Commit 7caf1a25 by Dima Bart

Merge pull request #127 from Shopify/bugfix/116-customerID-type

Change customerID type from NSString to the correct type - NSNumber.
parents 8f6e4bcc 1e1e6fcb
...@@ -237,7 +237,7 @@ ...@@ -237,7 +237,7 @@
/** /**
* Customer ID associated with the checkout * Customer ID associated with the checkout
*/ */
@property (nonatomic, copy, readonly) NSString *customerId; @property (nonatomic, copy, readonly) NSNumber *customerId;
/** /**
* An optional note attached to the order * An optional note attached to the order
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
@property (nonatomic, copy) NSDate *updatedAtDate; @property (nonatomic, copy) NSDate *updatedAtDate;
@property (nonatomic, strong) BUYMaskedCreditCard *creditCard; @property (nonatomic, strong) BUYMaskedCreditCard *creditCard;
@property (nonatomic, strong) BUYOrder *order; @property (nonatomic, strong) BUYOrder *order;
@property (nonatomic, copy) NSString *customerId; @property (nonatomic, copy) NSNumber *customerId;
@property (nonatomic, strong) NSURL *privacyPolicyURL; @property (nonatomic, strong) NSURL *privacyPolicyURL;
@property (nonatomic, strong) NSURL *refundPolicyURL; @property (nonatomic, strong) NSURL *refundPolicyURL;
@property (nonatomic, strong) NSURL *termsOfServiceURL; @property (nonatomic, strong) NSURL *termsOfServiceURL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment