Class: Google::Apis::AdminDirectoryV1::Tokens
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AdminDirectoryV1::Tokens
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb 
Overview
JSON response template for List tokens operation in Directory API.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ETag of the resource.
 - 
  
    
      #items  ⇒ Array<Google::Apis::AdminDirectoryV1::Token> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of Token resources.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the API resource.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Tokens 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Tokens.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Tokens
Returns a new instance of Tokens
      2793 2794 2795  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2793 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
      2781 2782 2783  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2781 def etag @etag end  | 
  
#items ⇒ Array<Google::Apis::AdminDirectoryV1::Token>
A list of Token resources.
Corresponds to the JSON property items
      2786 2787 2788  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2786 def items @items end  | 
  
#kind ⇒ String
The type of the API resource. This is always admin#directory#tokenList.
Corresponds to the JSON property kind
      2791 2792 2793  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2791 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2798 2799 2800 2801 2802  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2798 def update!(**args) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end  |