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
1a35bc2d
Commit
1a35bc2d
authored
Oct 07, 2015
by
Jonathan Baker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add generics to BUYProduct.
parent
b4e703e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
BUYProduct.h
Mobile Buy SDK/Mobile Buy SDK/Models/BUYProduct.h
+4
-4
No files found.
Mobile Buy SDK/Mobile Buy SDK/Models/BUYProduct.h
View file @
1a35bc2d
...
@@ -64,19 +64,19 @@
...
@@ -64,19 +64,19 @@
/**
/**
* A list of BUYProductVariant objects, each one representing a slightly different version of the product.
* A list of BUYProductVariant objects, each one representing a slightly different version of the product.
*/
*/
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
*
variants
;
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
<
BUYProductVariant
*>
*
variants
;
/**
/**
* A list of BUYImage objects, each one representing an image associated with the product.
* A list of BUYImage objects, each one representing an image associated with the product.
*/
*/
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
*
images
;
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
<
BUYImage
*>
*
images
;
/**
/**
* Custom product property names like "Size", "Color", and "Material".
* Custom product property names like "Size", "Color", and "Material".
* Products are based on permutations of these options.
* Products are based on permutations of these options.
* A product may have a maximum of 3 options. 255 characters limit each.
* A product may have a maximum of 3 options. 255 characters limit each.
*/
*/
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
*
options
;
@property
(
nonatomic
,
readonly
,
copy
)
NSArray
<
BUYOption
*>
*
options
;
/**
/**
* The description of the product, complete with HTML formatting.
* The description of the product, complete with HTML formatting.
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
* A categorization that a product can be tagged with, commonly used for filtering and searching.
* A categorization that a product can be tagged with, commonly used for filtering and searching.
* Each tag has a character limit of 255.
* Each tag has a character limit of 255.
*/
*/
@property
(
nonatomic
,
readonly
,
copy
)
NSSet
*
tags
;
@property
(
nonatomic
,
readonly
,
copy
)
NSSet
<
NSString
*>
*
tags
;
/**
/**
* The product is published on the current sales channel
* The product is published on the current sales channel
...
...
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