class Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListEntitlementsResponse

Response message for CloudChannelService.ListEntitlements.

Attributes

entitlements[RW]

The reseller customer's entitlements. Corresponds to the JSON property `entitlements` @return [Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1Entitlement>]

next_page_token[RW]

A token to list the next page of results. Pass to ListEntitlementsRequest. page_token to obtain that page. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudchannel_v1/classes.rb, line 1020
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudchannel_v1/classes.rb, line 1025
def update!(**args)
  @entitlements = args[:entitlements] if args.key?(:entitlements)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end