Class: Google::Apis::CloudcontrolspartnerV1::ListCustomersResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudcontrolspartnerV1::ListCustomersResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudcontrolspartner_v1/classes.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb
Overview
Response message for list customer Customers requests
Instance Attribute Summary collapse
-
#customers ⇒ Array<Google::Apis::CloudcontrolspartnerV1::Customer>
List of customers Corresponds to the JSON property
customers
. -
#next_page_token ⇒ String
A token that can be sent as
page_token
to retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCustomersResponse
constructor
A new instance of ListCustomersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCustomersResponse
Returns a new instance of ListCustomersResponse.
458 459 460 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 458 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customers ⇒ Array<Google::Apis::CloudcontrolspartnerV1::Customer>
List of customers
Corresponds to the JSON property customers
445 446 447 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 445 def customers @customers end |
#next_page_token ⇒ String
A token that 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
451 452 453 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 451 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
456 457 458 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 456 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
463 464 465 466 467 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 463 def update!(**args) @customers = args[:customers] if args.key?(:customers) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |