Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListChannelPartnerLinksResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListChannelPartnerLinksResponse
- 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.ListChannelPartnerLinks.
Instance Attribute Summary collapse
-
#channel_partner_links ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1ChannelPartnerLink>
The Channel partner links for a reseller.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1ListChannelPartnerLinksResponse
constructor
A new instance of GoogleCloudChannelV1ListChannelPartnerLinksResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ListChannelPartnerLinksResponse
Returns a new instance of GoogleCloudChannelV1ListChannelPartnerLinksResponse.
909 910 911 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 909 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel_partner_links ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1ChannelPartnerLink>
The Channel partner links for a reseller.
Corresponds to the JSON property channelPartnerLinks
901 902 903 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 901 def channel_partner_links @channel_partner_links end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass to
ListChannelPartnerLinksRequest.page_token to obtain that page.
Corresponds to the JSON property nextPageToken
907 908 909 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 907 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
914 915 916 917 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 914 def update!(**args) @channel_partner_links = args[:channel_partner_links] if args.key?(:channel_partner_links) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |