class Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListSubscribersResponse
Response Message for ListSubscribers.
Attributes
next_page_token[RW]
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property `nextPageToken` @return [String]
service_accounts[RW]
List of service accounts which have subscriber access to the topic. Corresponds to the JSON property `serviceAccounts` @return [Array<String>]
topic[RW]
Name of the topic registered with the reseller. Corresponds to the JSON property `topic` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudchannel_v1/classes.rb, line 1176 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 1181 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @service_accounts = args[:service_accounts] if args.key?(:service_accounts) @topic = args[:topic] if args.key?(:topic) end