Class: Google::Apis::DfareportingV4::Recipient

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/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.



10341
10342
10343
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10341

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)


10329
10330
10331
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10329

def delivery_type
  @delivery_type
end

#emailString

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

Returns:

  • (String)


10334
10335
10336
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10334

def email
  @email
end

#kindString

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

Returns:

  • (String)


10339
10340
10341
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10339

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10346
10347
10348
10349
10350
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10346

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