class Google::Apis::CloudchannelV1::GoogleCloudChannelV1MarketingInfo

Represents the marketing information for a Product, SKU or Offer.

Attributes

description[RW]

Human readable description. Description can contain HTML. Corresponds to the JSON property `description` @return [String]

display_name[RW]

Human readable name. Corresponds to the JSON property `displayName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudchannel_v1/classes.rb, line 1374
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudchannel_v1/classes.rb, line 1379
def update!(**args)
  @default_logo = args[:default_logo] if args.key?(:default_logo)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
end