class Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListTransferableOffersRequest

Request message for CloudChannelService.ListTransferableOffers

Attributes

cloud_identity_id[RW]

Customer's Cloud Identity ID Corresponds to the JSON property `cloudIdentityId` @return [String]

customer_name[RW]

A reseller should create a customer and use the resource name of that customer here. Corresponds to the JSON property `customerName` @return [String]

language_code[RW]

The BCP-47 language code. For example, “en-US”. The response will localize in the corresponding language code, if specified. The default value is “en-US”. Corresponds to the JSON property `languageCode` @return [String]

page_size[RW]

Requested page size. Server might return fewer results than requested. If unspecified, returns at most 100 offers. The maximum value is 1000; the server will coerce values above 1000. Corresponds to the JSON property `pageSize` @return [Fixnum]

page_token[RW]

A token for a page of results other than the first page. Obtained using ListTransferableOffersResponse.next_page_token of the previous CloudChannelService.ListTransferableOffers call. Corresponds to the JSON property `pageToken` @return [String]

sku[RW]

Required. The SKU to look up Offers for. Corresponds to the JSON property `sku` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudchannel_v1/classes.rb, line 1228
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 1233
def update!(**args)
  @cloud_identity_id = args[:cloud_identity_id] if args.key?(:cloud_identity_id)
  @customer_name = args[:customer_name] if args.key?(:customer_name)
  @language_code = args[:language_code] if args.key?(:language_code)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
  @sku = args[:sku] if args.key?(:sku)
end