Class: Google::Apis::DfareportingV3_2::ThirdPartyAuthenticationToken
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_2::ThirdPartyAuthenticationToken
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ThirdPartyAuthenticationToken
Returns a new instance of ThirdPartyAuthenticationToken
      11709 11710 11711  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 11709 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#name ⇒ String
Name of the third-party authentication token.
Corresponds to the JSON property name
      11701 11702 11703  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 11701 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
      11707 11708 11709  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 11707 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11714 11715 11716 11717  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 11714 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end  |