Class: Google::Apis::AdminDirectoryV1::OrgUnits
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AdminDirectoryV1::OrgUnits
 
 
- 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 Organization Units operation in Directory API.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ETag of the resource.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Kind of resource this is.
 - 
  
    
      #organization_units  ⇒ Array<Google::Apis::AdminDirectoryV1::OrgUnit> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of user objects.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrgUnits 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OrgUnits.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrgUnits
Returns a new instance of OrgUnits
      2199 2200 2201  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2199 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
      2187 2188 2189  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2187 def etag @etag end  | 
  
#kind ⇒ String
Kind of resource this is.
Corresponds to the JSON property kind
      2192 2193 2194  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2192 def kind @kind end  | 
  
#organization_units ⇒ Array<Google::Apis::AdminDirectoryV1::OrgUnit>
List of user objects.
Corresponds to the JSON property organizationUnits
      2197 2198 2199  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2197 def organization_units @organization_units end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2204 2205 2206 2207 2208  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2204 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @organization_units = args[:organization_units] if args.key?(:organization_units) end  |