class Google::Apis::DfareportingV2_1::Recipient

Represents a recipient.

Attributes

delivery_type[RW]

The delivery type for the recipient. Corresponds to the JSON property `deliveryType` @return [String]

email[RW]

The email address of the recipient. Corresponds to the JSON property `email` @return [String]

kind[RW]

The kind of resource this is, in this case dfareporting#recipient. Corresponds to the JSON property `kind` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 8548
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dfareporting_v2_1/classes.rb, line 8553
def update!(**args)
  @delivery_type = args[:delivery_type] unless args[:delivery_type].nil?
  @email = args[:email] unless args[:email].nil?
  @kind = args[:kind] unless args[:kind].nil?
end