Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1Product
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1Product
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
A Product is the entity a customer uses when placing an order. For example, Google Workspace, Google Voice, etc.
Instance Attribute Summary collapse
-
#marketing_info ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1MarketingInfo
Represents the marketing information for a Product, SKU or Offer.
-
#name ⇒ String
Resource Name of the Product.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1Product
constructor
A new instance of GoogleCloudChannelV1Product.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1Product
Returns a new instance of GoogleCloudChannelV1Product.
2223 2224 2225 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2223 def initialize(**args) update!(**args) end |
Instance Attribute Details
#marketing_info ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1MarketingInfo
Represents the marketing information for a Product, SKU or Offer.
Corresponds to the JSON property marketingInfo
2216 2217 2218 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2216 def marketing_info @marketing_info end |
#name ⇒ String
Resource Name of the Product. Format: products/product_id
Corresponds to the JSON property name
2221 2222 2223 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2221 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2228 2229 2230 2231 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2228 def update!(**args) @marketing_info = args[:marketing_info] if args.key?(:marketing_info) @name = args[:name] if args.key?(:name) end |