Class: Google::Apis::ContentV2::AccountsAuthInfoResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::AccountsAuthInfoResponse
 
- Defined in:
- generated/google/apis/content_v2/classes.rb,
 generated/google/apis/content_v2/representations.rb,
 generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #account_identifiers  ⇒ Array<Google::Apis::ContentV2::AccountIdentifier> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The account identifiers corresponding to the authenticated user. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountsAuthInfoResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AccountsAuthInfoResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountsAuthInfoResponse
Returns a new instance of AccountsAuthInfoResponse
| 578 579 580 | # File 'generated/google/apis/content_v2/classes.rb', line 578 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#account_identifiers ⇒ Array<Google::Apis::ContentV2::AccountIdentifier>
The account identifiers corresponding to the authenticated user.
- For an individual account: only the merchant ID is defined
- For an aggregator: only the aggregator ID is defined
- For a subaccount of an MCA: both the merchant ID and the aggregator ID are
defined.
Corresponds to the JSON property accountIdentifiers
| 570 571 572 | # File 'generated/google/apis/content_v2/classes.rb', line 570 def account_identifiers @account_identifiers end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
accountsAuthInfoResponse".
Corresponds to the JSON property kind
| 576 577 578 | # File 'generated/google/apis/content_v2/classes.rb', line 576 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 583 584 585 586 | # File 'generated/google/apis/content_v2/classes.rb', line 583 def update!(**args) @account_identifiers = args[:account_identifiers] if args.key?(:account_identifiers) @kind = args[:kind] if args.key?(:kind) end |