Class: Google::Apis::DfareportingV3_0::Recipient
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::Recipient
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb 
Overview
Represents a recipient.
Instance Attribute Summary collapse
- 
  
    
      #delivery_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The delivery type for the recipient.
 - 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The email address of the recipient.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of resource this is, in this case dfareporting#recipient.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Recipient 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Recipient.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Recipient
Returns a new instance of Recipient
      9443 9444 9445  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9443 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#delivery_type ⇒ String
The delivery type for the recipient.
Corresponds to the JSON property deliveryType
      9431 9432 9433  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9431 def delivery_type @delivery_type end  | 
  
#email ⇒ String
The email address of the recipient.
Corresponds to the JSON property email
      9436 9437 9438  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9436 def email @email end  | 
  
#kind ⇒ String
The kind of resource this is, in this case dfareporting#recipient.
Corresponds to the JSON property kind
      9441 9442 9443  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9441 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      9448 9449 9450 9451 9452  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9448 def update!(**args) @delivery_type = args[:delivery_type] if args.key?(:delivery_type) @email = args[:email] if args.key?(:email) @kind = args[:kind] if args.key?(:kind) end  |