Class: Google::Apis::DfareportingV3_4::Recipient

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



10131
10132
10133
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 10131

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)


10119
10120
10121
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 10119

def delivery_type
  @delivery_type
end

#emailString

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

Returns:

  • (String)


10124
10125
10126
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 10124

def email
  @email
end

#kindString

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

Returns:

  • (String)


10129
10130
10131
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 10129

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10136
10137
10138
10139
10140
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 10136

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