class Google::Apis::DfareportingV3_3::ThirdPartyAuthenticationToken

Third Party Authentication Token

Attributes

name[RW]

Name of the third-party authentication token. Corresponds to the JSON property `name` @return [String]

value[RW]

Value of the third-party authentication token. This is a read-only, auto- generated field. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 11548
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 11553
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @value = args[:value] if args.key?(:value)
end