Class: Google::Apis::DfareportingV3_2::UserRolePermissionGroupsListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_2::UserRolePermissionGroupsListResponse
 
 
- 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
User Role Permission Group List Response
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #user_role_permission_groups  ⇒ Array<Google::Apis::DfareportingV3_2::UserRolePermissionGroup> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
User role permission group collection.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UserRolePermissionGroupsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UserRolePermissionGroupsListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserRolePermissionGroupsListResponse
Returns a new instance of UserRolePermissionGroupsListResponse
      12087 12088 12089  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12087 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#userRolePermissionGroupsListResponse".
Corresponds to the JSON property kind
      12080 12081 12082  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12080 def kind @kind end  | 
  
#user_role_permission_groups ⇒ Array<Google::Apis::DfareportingV3_2::UserRolePermissionGroup>
User role permission group collection.
Corresponds to the JSON property userRolePermissionGroups
      12085 12086 12087  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12085 def @user_role_permission_groups end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      12092 12093 12094 12095  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12092 def update!(**args) @kind = args[:kind] if args.key?(:kind) @user_role_permission_groups = args[:user_role_permission_groups] if args.key?(:user_role_permission_groups) end  |