Class: Google::Apis::DfareportingV4::ThirdPartyAuthenticationToken
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::ThirdPartyAuthenticationToken
- 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
Third Party Authentication Token
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the third-party authentication token.
-
#value ⇒ String
Value of the third-party authentication token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThirdPartyAuthenticationToken
constructor
A new instance of ThirdPartyAuthenticationToken.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ThirdPartyAuthenticationToken
Returns a new instance of ThirdPartyAuthenticationToken.
13949 13950 13951 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13949 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the third-party authentication token.
Corresponds to the JSON property name
13941 13942 13943 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13941 def name @name end |
#value ⇒ String
Value of the third-party authentication token. This is a read-only, auto-
generated field.
Corresponds to the JSON property value
13947 13948 13949 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13947 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13954 13955 13956 13957 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13954 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end |