Class: Google::Apis::DfareportingV3_1::Recipient
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_1::Recipient
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_1/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
9580 9581 9582 |
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 9580 def initialize(**args) update!(**args) end |
Instance Attribute Details
#delivery_type ⇒ String
The delivery type for the recipient.
Corresponds to the JSON property deliveryType
9568 9569 9570 |
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 9568 def delivery_type @delivery_type end |
#email ⇒ String
The email address of the recipient.
Corresponds to the JSON property email
9573 9574 9575 |
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 9573 def email @email end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#recipient.
Corresponds to the JSON property kind
9578 9579 9580 |
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 9578 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9585 9586 9587 9588 9589 |
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 9585 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 |