Skip to content

Files

Latest commit

 

History

History
56 lines (42 loc) · 2.5 KB

V1Item.md

File metadata and controls

56 lines (42 loc) · 2.5 KB

Square.Connect.Model.V1Item

Properties

Name Type Description Notes
Id string The item's ID. Must be unique among all entity IDs ever provided on behalf of the merchant. You can never reuse an ID. This value can include alphanumeric characters, dashes (-), and underscores (_). [optional]
Name string The item's name. [optional]
Description string The item's description. [optional]
Type TypeEnum The item's type. This value is NORMAL for almost all items. [optional]
Color ColorEnum The color of the discount's display label in Square Register, if not the default color. The default color is 9da2a6. [optional]
Abbreviation string The text of the item's display label in Square Register. Only up to the first five characters of the string are used. [optional]
Visibility VisibilityEnum Indicates whether the item is viewable from the merchant's online store (PUBLIC) or PRIVATE. [optional]
AvailableOnline bool? If true, the item can be added to shipping orders from the merchant's online store. [optional]
MasterImage V1ItemImage The item's master image, if any. [optional]
Category V1Category The category the item belongs to, if any. [optional]
Variations List<V1Variation> The item's variations. You must specify at least one variation. [optional]
ModifierLists List<V1Variation> The modifier lists that apply to the item, if any. [optional]
Fees List<V1Fee> The fees that apply to the item, if any. [optional]
Taxable bool? Deprecated. This field is not used. [optional]

TypeEnum

Name Value
NORMAL "NORMAL"
GIFTCARD "GIFT_CARD"
OTHER "OTHER"

ColorEnum

Name Value
_9da2a6 "9da2a6"
_4ab200 "4ab200"
_0b8000 "0b8000"
_2952cc "2952cc"
A82ee5 "a82ee5"
E5457a "e5457a"
B21212 "b21212"
_593c00 "593c00"
E5BF00 "e5BF00"

VisibilityEnum

Name Value
PUBLIC "PUBLIC"
PRIVATE "PRIVATE"

[Back to Model list] [Back to API list] [Back to README]