Class: Google::Apis::CssV1::ListAccountLabelsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CssV1::ListAccountLabelsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/css_v1/classes.rb,
lib/google/apis/css_v1/representations.rb,
lib/google/apis/css_v1/representations.rb
Overview
Response message for the ListAccountLabels method.
Instance Attribute Summary collapse
-
#account_labels ⇒ Array<Google::Apis::CssV1::AccountLabel>
The labels from the specified account.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAccountLabelsResponse
constructor
A new instance of ListAccountLabelsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAccountLabelsResponse
Returns a new instance of ListAccountLabelsResponse.
937 938 939 |
# File 'lib/google/apis/css_v1/classes.rb', line 937 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_labels ⇒ Array<Google::Apis::CssV1::AccountLabel>
The labels from the specified account.
Corresponds to the JSON property accountLabels
929 930 931 |
# File 'lib/google/apis/css_v1/classes.rb', line 929 def account_labels @account_labels end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
935 936 937 |
# File 'lib/google/apis/css_v1/classes.rb', line 935 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
942 943 944 945 |
# File 'lib/google/apis/css_v1/classes.rb', line 942 def update!(**args) @account_labels = args[:account_labels] if args.key?(:account_labels) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |