Example #1
0
 public V1Item(string id                                   = null,
               string name                                 = null,
               string description                          = null,
               string type                                 = null,
               string color                                = null,
               string abbreviation                         = null,
               string visibility                           = null,
               bool?availableOnline                        = null,
               Models.V1ItemImage masterImage              = null,
               Models.V1Category category                  = null,
               IList <Models.V1Variation> variations       = null,
               IList <Models.V1ModifierList> modifierLists = null,
               IList <Models.V1Fee> fees                   = null,
               bool?taxable                                = null,
               string categoryId                           = null,
               bool?availableForPickup                     = null,
               string v2Id                                 = null)
 {
     Id                 = id;
     Name               = name;
     Description        = description;
     Type               = type;
     Color              = color;
     Abbreviation       = abbreviation;
     Visibility         = visibility;
     AvailableOnline    = availableOnline;
     MasterImage        = masterImage;
     Category           = category;
     Variations         = variations;
     ModifierLists      = modifierLists;
     Fees               = fees;
     Taxable            = taxable;
     CategoryId         = categoryId;
     AvailableForPickup = availableForPickup;
     V2Id               = v2Id;
 }
Example #2
0
 public Builder MasterImage(Models.V1ItemImage value)
 {
     masterImage = value;
     return(this);
 }
Example #3
0
 public Builder MasterImage(Models.V1ItemImage masterImage)
 {
     this.masterImage = masterImage;
     return(this);
 }