Class: Google::Apis::DfareportingV3_5::Recipient

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/representations.rb

Overview

Represents a recipient.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Recipient

Returns a new instance of Recipient.



9790
9791
9792
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9790

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

Instance Attribute Details

#delivery_typeString

The delivery type for the recipient. Corresponds to the JSON property deliveryType

Returns:

  • (String)


9778
9779
9780
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9778

def delivery_type
  @delivery_type
end

#emailString

The email address of the recipient. Corresponds to the JSON property email

Returns:

  • (String)


9783
9784
9785
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9783

def email
  @email
end

#kindString

The kind of resource this is, in this case dfareporting#recipient. Corresponds to the JSON property kind

Returns:

  • (String)


9788
9789
9790
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9788

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9795
9796
9797
9798
9799
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9795

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