Class: Google::Apis::ContentV2::OrderCustomer
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::OrderCustomer
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Email address that should be used for order related communications.
 - 
  
    
      #explicit_marketing_preference  ⇒ Boolean 
    
    
      (also: #explicit_marketing_preference?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Deprecated.
 - 
  
    
      #full_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Full name of the customer.
 - 
  
    
      #marketing_rights_info  ⇒ Google::Apis::ContentV2::OrderCustomerMarketingRightsInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Customer's marketing preferences.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrderCustomer 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OrderCustomer.
 - 
  
    
      #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) ⇒ OrderCustomer
Returns a new instance of OrderCustomer
      3978 3979 3980  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3978 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#email ⇒ String
Email address that should be used for order related communications. In certain
cases this might not be a real users email, but a proxy email.
Corresponds to the JSON property email
      3960 3961 3962  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3960 def email @email end  | 
  
#explicit_marketing_preference ⇒ Boolean Also known as: explicit_marketing_preference?
Deprecated. Please use marketingRightsInfo instead.
Corresponds to the JSON property explicitMarketingPreference
      3965 3966 3967  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3965 def explicit_marketing_preference @explicit_marketing_preference end  | 
  
#full_name ⇒ String
Full name of the customer.
Corresponds to the JSON property fullName
      3971 3972 3973  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3971 def full_name @full_name end  | 
  
#marketing_rights_info ⇒ Google::Apis::ContentV2::OrderCustomerMarketingRightsInfo
Customer's marketing preferences.
Corresponds to the JSON property marketingRightsInfo
      3976 3977 3978  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3976 def marketing_rights_info @marketing_rights_info end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3983 3984 3985 3986 3987 3988  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3983 def update!(**args) @email = args[:email] if args.key?(:email) @explicit_marketing_preference = args[:explicit_marketing_preference] if args.key?(:explicit_marketing_preference) @full_name = args[:full_name] if args.key?(:full_name) @marketing_rights_info = args[:marketing_rights_info] if args.key?(:marketing_rights_info) end  |