Class: Google::Apis::ManufacturersV1::Product
- Inherits:
-
Object
- Object
- Google::Apis::ManufacturersV1::Product
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/manufacturers_v1/classes.rb,
generated/google/apis/manufacturers_v1/representations.rb,
generated/google/apis/manufacturers_v1/representations.rb
Overview
Product data.
Instance Attribute Summary collapse
-
#content_language ⇒ String
The content language of the product as a two-letter ISO 639-1 language code (for example, en).
-
#final_attributes ⇒ Google::Apis::ManufacturersV1::Attributes
Attributes of the product.
-
#issues ⇒ Array<Google::Apis::ManufacturersV1::Issue>
A server-generated list of issues associated with the product.
-
#manually_deleted_attributes ⇒ Array<String>
Names of the attributes of the product deleted manually via the Manufacturer Center UI.
-
#manually_provided_attributes ⇒ Google::Apis::ManufacturersV1::Attributes
Attributes of the product.
-
#name ⇒ String
Name in the format
target_country`:`content_language`:`product_id. -
#parent ⇒ String
Parent ID in the format
accounts/account_id``. -
#product_id ⇒ String
The ID of the product.
-
#target_country ⇒ String
The target country of the product as a CLDR territory code (for example, US).
-
#uploaded_attributes ⇒ Google::Apis::ManufacturersV1::Attributes
Attributes of the product.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Product
constructor
A new instance of Product.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Product
Returns a new instance of Product
604 605 606 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 604 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_language ⇒ String
The content language of the product as a two-letter ISO 639-1 language code
(for example, en).
Corresponds to the JSON property contentLanguage
576 577 578 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 576 def content_language @content_language end |
#final_attributes ⇒ Google::Apis::ManufacturersV1::Attributes
Attributes of the product. For more information, see
https://support.google.com/manufacturers/answer/6124116.
Corresponds to the JSON property finalAttributes
536 537 538 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 536 def final_attributes @final_attributes end |
#issues ⇒ Array<Google::Apis::ManufacturersV1::Issue>
A server-generated list of issues associated with the product.
Corresponds to the JSON property issues
595 596 597 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 595 def issues @issues end |
#manually_deleted_attributes ⇒ Array<String>
Names of the attributes of the product deleted manually via the
Manufacturer Center UI.
Corresponds to the JSON property manuallyDeletedAttributes
602 603 604 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 602 def manually_deleted_attributes @manually_deleted_attributes end |
#manually_provided_attributes ⇒ Google::Apis::ManufacturersV1::Attributes
Attributes of the product. For more information, see
https://support.google.com/manufacturers/answer/6124116.
Corresponds to the JSON property manuallyProvidedAttributes
562 563 564 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 562 def manually_provided_attributes @manually_provided_attributes end |
#name ⇒ String
Name in the format target_country`:`content_language`:`product_id.
target_country - The target country of the product as a CLDR territory
code (for example, US).
content_language - The content language of the product as a two-letter
ISO 639-1 language code (for example, en).
product_id - The ID of the product. For more information, see
https://support.google.com/manufacturers/answer/6124116#
id.
Corresponds to the JSON property name
589 590 591 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 589 def name @name end |
#parent ⇒ String
Parent ID in the format accounts/account_id`.
account_id- The ID of the Manufacturer Center account.
Corresponds to the JSON propertyparent`
556 557 558 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 556 def parent @parent end |
#product_id ⇒ String
The ID of the product. For more information, see
https://support.google.com/manufacturers/answer/6124116#id.
Corresponds to the JSON property productId
543 544 545 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 543 def product_id @product_id end |
#target_country ⇒ String
The target country of the product as a CLDR territory code (for example,
US).
Corresponds to the JSON property targetCountry
569 570 571 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 569 def target_country @target_country end |
#uploaded_attributes ⇒ Google::Apis::ManufacturersV1::Attributes
Attributes of the product. For more information, see
https://support.google.com/manufacturers/answer/6124116.
Corresponds to the JSON property uploadedAttributes
549 550 551 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 549 def uploaded_attributes @uploaded_attributes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
609 610 611 612 613 614 615 616 617 618 619 620 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 609 def update!(**args) @final_attributes = args[:final_attributes] if args.key?(:final_attributes) @product_id = args[:product_id] if args.key?(:product_id) @uploaded_attributes = args[:uploaded_attributes] if args.key?(:uploaded_attributes) @parent = args[:parent] if args.key?(:parent) @manually_provided_attributes = args[:manually_provided_attributes] if args.key?(:manually_provided_attributes) @target_country = args[:target_country] if args.key?(:target_country) @content_language = args[:content_language] if args.key?(:content_language) @name = args[:name] if args.key?(:name) @issues = args[:issues] if args.key?(:issues) @manually_deleted_attributes = args[:manually_deleted_attributes] if args.key?(:manually_deleted_attributes) end |