Class: Google::Apis::ContentV2::ListAccountsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ListAccountsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
The token for the retrieval of the next page of accounts.
-
#resources ⇒ Array<Google::Apis::ContentV2::Account>
Corresponds to the JSON property
resources
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAccountsResponse
constructor
A new instance of ListAccountsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAccountsResponse
Returns a new instance of ListAccountsResponse.
1185 1186 1187 |
# File 'lib/google/apis/content_v2/classes.rb', line 1185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
accountsListResponse".
Corresponds to the JSON property kind
1173 1174 1175 |
# File 'lib/google/apis/content_v2/classes.rb', line 1173 def kind @kind end |
#next_page_token ⇒ String
The token for the retrieval of the next page of accounts.
Corresponds to the JSON property nextPageToken
1178 1179 1180 |
# File 'lib/google/apis/content_v2/classes.rb', line 1178 def next_page_token @next_page_token end |
#resources ⇒ Array<Google::Apis::ContentV2::Account>
Corresponds to the JSON property resources
1183 1184 1185 |
# File 'lib/google/apis/content_v2/classes.rb', line 1183 def resources @resources end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1190 1191 1192 1193 1194 |
# File 'lib/google/apis/content_v2/classes.rb', line 1190 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resources = args[:resources] if args.key?(:resources) end |