Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListEntitlementsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListEntitlementsResponse
- 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.ListEntitlements.
Instance Attribute Summary collapse
-
#entitlements ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1Entitlement>
The reseller customer's entitlements.
-
#next_page_token ⇒ String
A token to list the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1ListEntitlementsResponse
constructor
A new instance of GoogleCloudChannelV1ListEntitlementsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ListEntitlementsResponse
Returns a new instance of GoogleCloudChannelV1ListEntitlementsResponse.
1148 1149 1150 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1148 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entitlements ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1Entitlement>
The reseller customer's entitlements.
Corresponds to the JSON property entitlements
1140 1141 1142 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1140 def entitlements @entitlements end |
#next_page_token ⇒ String
A token to list the next page of results. Pass to ListEntitlementsRequest.
page_token to obtain that page.
Corresponds to the JSON property nextPageToken
1146 1147 1148 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1146 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1153 1154 1155 1156 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1153 def update!(**args) @entitlements = args[:entitlements] if args.key?(:entitlements) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |