Class: Google::Apis::DfareportingV5::Recipient

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



10579
10580
10581
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 10579

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)


10567
10568
10569
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 10567

def delivery_type
  @delivery_type
end

#emailString

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

Returns:

  • (String)


10572
10573
10574
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 10572

def email
  @email
end

#kindString

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

Returns:

  • (String)


10577
10578
10579
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 10577

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10584
10585
10586
10587
10588
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 10584

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