Class: Google::Apis::DfareportingV2_1::ListUserRolesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::ListUserRolesResponse
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb
Overview
User Role List Response
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
-
#user_roles ⇒ Array<Google::Apis::DfareportingV2_1::UserRole>
User role collection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUserRolesResponse
constructor
A new instance of ListUserRolesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListUserRolesResponse
Returns a new instance of ListUserRolesResponse
10757 10758 10759 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 10757 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#userRolesListResponse".
Corresponds to the JSON property kind
10745 10746 10747 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 10745 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
10750 10751 10752 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 10750 def next_page_token @next_page_token end |
#user_roles ⇒ Array<Google::Apis::DfareportingV2_1::UserRole>
User role collection.
Corresponds to the JSON property userRoles
10755 10756 10757 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 10755 def user_roles @user_roles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10762 10763 10764 10765 10766 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 10762 def update!(**args) @kind = args[:kind] unless args[:kind].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? @user_roles = args[:user_roles] unless args[:user_roles].nil? end |