class Google::Apis::DfareportingV3_3::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 lib/google/apis/dfareporting_v3_3/classes.rb, line 9317 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 9322 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