Class: Google::Apis::ContentV2sandbox::TestOrderLineItemProduct
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2sandbox::TestOrderLineItemProduct
- Defined in:
- generated/google/apis/content_v2sandbox/classes.rb,
generated/google/apis/content_v2sandbox/representations.rb,
generated/google/apis/content_v2sandbox/representations.rb
Instance Attribute Summary collapse
-
#brand ⇒ String
Brand of the item.
-
#channel ⇒ String
The item's channel.
-
#condition ⇒ String
Condition or state of the item.
-
#content_language ⇒ String
The two-letter ISO 639-1 language code for the item.
-
#gtin ⇒ String
Global Trade Item Number (GTIN) of the item.
-
#image_link ⇒ String
URL of an image of the item.
-
#item_group_id ⇒ String
Shared identifier for all variants of the same product.
-
#mpn ⇒ String
Manufacturer Part Number (MPN) of the item.
-
#offer_id ⇒ String
An identifier of the item.
-
#price ⇒ Google::Apis::ContentV2sandbox::Price
The price for the product.
-
#target_country ⇒ String
The CLDR territory code of the target country of the product.
-
#title ⇒ String
The title of the product.
-
#variant_attributes ⇒ Array<Google::Apis::ContentV2sandbox::OrderLineItemProductVariantAttribute>
Variant attributes for the item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestOrderLineItemProduct
constructor
A new instance of TestOrderLineItemProduct.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestOrderLineItemProduct
Returns a new instance of TestOrderLineItemProduct
3267 3268 3269 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3267 def initialize(**args) update!(**args) end |
Instance Attribute Details
#brand ⇒ String
Brand of the item.
Corresponds to the JSON property brand
3205 3206 3207 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3205 def brand @brand end |
#channel ⇒ String
The item's channel.
Corresponds to the JSON property channel
3210 3211 3212 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3210 def channel @channel end |
#condition ⇒ String
Condition or state of the item.
Corresponds to the JSON property condition
3215 3216 3217 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3215 def condition @condition end |
#content_language ⇒ String
The two-letter ISO 639-1 language code for the item.
Corresponds to the JSON property contentLanguage
3220 3221 3222 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3220 def content_language @content_language end |
#gtin ⇒ String
Global Trade Item Number (GTIN) of the item. Optional.
Corresponds to the JSON property gtin
3225 3226 3227 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3225 def gtin @gtin end |
#image_link ⇒ String
URL of an image of the item.
Corresponds to the JSON property imageLink
3230 3231 3232 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3230 def image_link @image_link end |
#item_group_id ⇒ String
Shared identifier for all variants of the same product. Optional.
Corresponds to the JSON property itemGroupId
3235 3236 3237 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3235 def item_group_id @item_group_id end |
#mpn ⇒ String
Manufacturer Part Number (MPN) of the item. Optional.
Corresponds to the JSON property mpn
3240 3241 3242 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3240 def mpn @mpn end |
#offer_id ⇒ String
An identifier of the item.
Corresponds to the JSON property offerId
3245 3246 3247 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3245 def offer_id @offer_id end |
#price ⇒ Google::Apis::ContentV2sandbox::Price
The price for the product.
Corresponds to the JSON property price
3250 3251 3252 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3250 def price @price end |
#target_country ⇒ String
The CLDR territory code of the target country of the product.
Corresponds to the JSON property targetCountry
3255 3256 3257 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3255 def target_country @target_country end |
#title ⇒ String
The title of the product.
Corresponds to the JSON property title
3260 3261 3262 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3260 def title @title end |
#variant_attributes ⇒ Array<Google::Apis::ContentV2sandbox::OrderLineItemProductVariantAttribute>
Variant attributes for the item. Optional.
Corresponds to the JSON property variantAttributes
3265 3266 3267 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3265 def variant_attributes @variant_attributes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3272 def update!(**args) @brand = args[:brand] if args.key?(:brand) @channel = args[:channel] if args.key?(:channel) @condition = args[:condition] if args.key?(:condition) @content_language = args[:content_language] if args.key?(:content_language) @gtin = args[:gtin] if args.key?(:gtin) @image_link = args[:image_link] if args.key?(:image_link) @item_group_id = args[:item_group_id] if args.key?(:item_group_id) @mpn = args[:mpn] if args.key?(:mpn) @offer_id = args[:offer_id] if args.key?(:offer_id) @price = args[:price] if args.key?(:price) @target_country = args[:target_country] if args.key?(:target_country) @title = args[:title] if args.key?(:title) @variant_attributes = args[:variant_attributes] if args.key?(:variant_attributes) end |