Class: Google::Apis::DfareportingV2_1::ListAccountUserProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::ListAccountUserProfilesResponse
- 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
Account User Profile List Response
Instance Attribute Summary collapse
-
#account_user_profiles ⇒ Array<Google::Apis::DfareportingV2_1::AccountUserProfile>
Account user profile collection.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAccountUserProfilesResponse
constructor
A new instance of ListAccountUserProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAccountUserProfilesResponse
Returns a new instance of ListAccountUserProfilesResponse.
560 561 562 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 560 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_user_profiles ⇒ Array<Google::Apis::DfareportingV2_1::AccountUserProfile>
Account user profile collection.
Corresponds to the JSON property accountUserProfiles
547 548 549 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 547 def account_user_profiles @account_user_profiles end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#accountUserProfilesListResponse".
Corresponds to the JSON property kind
553 554 555 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 553 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
558 559 560 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 558 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
565 566 567 568 569 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 565 def update!(**args) @account_user_profiles = args[:account_user_profiles] unless args[:account_user_profiles].nil? @kind = args[:kind] unless args[:kind].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end |