Class: Google::Apis::ContentV2sandbox::OrderCustomerMarketingRightsInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2sandbox::OrderCustomerMarketingRightsInfo
 
- 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
- 
  
    
      #explicit_marketing_preference  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Last known user selection regarding marketing preferences. 
- 
  
    
      #last_updated_timestamp  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Timestamp when last time marketing preference was updated. 
- 
  
    
      #marketing_email_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Email address that can be used for marketing purposes. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrderCustomerMarketingRightsInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OrderCustomerMarketingRightsInfo. 
- 
  
    
      #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) ⇒ OrderCustomerMarketingRightsInfo
Returns a new instance of OrderCustomerMarketingRightsInfo
| 399 400 401 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 399 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#explicit_marketing_preference ⇒ String
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
| 385 386 387 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 385 def explicit_marketing_preference @explicit_marketing_preference end | 
#last_updated_timestamp ⇒ String
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
| 391 392 393 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 391 def @last_updated_timestamp end | 
#marketing_email_address ⇒ String
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
| 397 398 399 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 397 def marketing_email_address @marketing_email_address end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 404 405 406 407 408 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 404 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 |