Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListCustomerRepricingConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListCustomerRepricingConfigsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Response message for CloudChannelService.ListCustomerRepricingConfigs.
Instance Attribute Summary collapse
-
#customer_repricing_configs ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1CustomerRepricingConfig>
The repricing configs for this channel partner.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1ListCustomerRepricingConfigsResponse
constructor
A new instance of GoogleCloudChannelV1ListCustomerRepricingConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ListCustomerRepricingConfigsResponse
Returns a new instance of GoogleCloudChannelV1ListCustomerRepricingConfigsResponse.
1096 1097 1098 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1096 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer_repricing_configs ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1CustomerRepricingConfig>
The repricing configs for this channel partner.
Corresponds to the JSON property customerRepricingConfigs
1088 1089 1090 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1088 def customer_repricing_configs @customer_repricing_configs end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass to
ListCustomerRepricingConfigsRequest.page_token to obtain that page.
Corresponds to the JSON property nextPageToken
1094 1095 1096 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1094 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1101 1102 1103 1104 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1101 def update!(**args) @customer_repricing_configs = args[:customer_repricing_configs] if args.key?(:customer_repricing_configs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |