Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
shopify_iossdk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cemarose
shopify_iossdk
Commits
d4d2ed9a
Commit
d4d2ed9a
authored
Oct 07, 2015
by
Jonathan Baker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add generics to BUYCheckout.
parent
ee766b7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
BUYCheckout.h
Mobile Buy SDK/Mobile Buy SDK/Models/BUYCheckout.h
+5
-4
No files found.
Mobile Buy SDK/Mobile Buy SDK/Models/BUYCheckout.h
View file @
d4d2ed9a
...
...
@@ -35,6 +35,8 @@
@class
BUYOrder
;
@class
BUYShippingRate
;
@class
BUYTaxLine
;
@class
BUYLineItem
;
@class
BUYGiftCard
;
/**
* The checkout object. This is the main object that you will interact with when creating orders on Shopify.
...
...
@@ -125,13 +127,12 @@
* Note: These are different from BUYCartLineItems in that the line item
* objects do not include the BUYProductVariant
*/
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
*
lineItems
;
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
<
__kindof
BUYLineItem
*>
*
lineItems
;
/**
* Array of tax line objects on the checkout
*/
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
*
taxLines
;
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
<
BUYTaxLine
*>
*
taxLines
;
/**
* The mailing address associated with the payment method
*/
...
...
@@ -162,7 +163,7 @@
/**
* An array of BUYGiftCard objects applied to the checkout
*/
@property
(
nonatomic
,
strong
,
readonly
)
NSArray
*
giftCards
;
@property
(
nonatomic
,
strong
,
readonly
)
NSArray
<
BUYGiftCard
*>
*
giftCards
;
/**
* Channel ID where the checkout was created
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment