Class: Google::Apis::ContentV2sandbox::OrderCustomerMarketingRightsInfo

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OrderCustomerMarketingRightsInfo

Returns a new instance of OrderCustomerMarketingRightsInfo



506
507
508
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 506

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#explicit_marketing_preferenceString

Last known user selection regarding marketing preferences. In certain cases this selection might not be known, so this field would be empty. Corresponds to the JSON property explicitMarketingPreference

Returns:

  • (String)


492
493
494
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 492

def explicit_marketing_preference
  @explicit_marketing_preference
end

#last_updated_timestampString

Timestamp when last time marketing preference was updated. Could be empty, if user wasn't offered a selection yet. Corresponds to the JSON property lastUpdatedTimestamp

Returns:

  • (String)


498
499
500
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 498

def last_updated_timestamp
  @last_updated_timestamp
end

#marketing_email_addressString

Email address that can be used for marketing purposes. This field is only filled when explicitMarketingPreference is equal to 'granted'. Corresponds to the JSON property marketingEmailAddress

Returns:

  • (String)


504
505
506
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 504

def marketing_email_address
  @marketing_email_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



511
512
513
514
515
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 511

def update!(**args)
  @explicit_marketing_preference = args[:explicit_marketing_preference] if args.key?(:explicit_marketing_preference)
  @last_updated_timestamp = args[:last_updated_timestamp] if args.key?(:last_updated_timestamp)
  @marketing_email_address = args[:marketing_email_address] if args.key?(:marketing_email_address)
end