Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListSubscribersResponse

Inherits:
Object
  • Object
show all
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 ListSubscribers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1ListSubscribersResponse

Returns a new instance of GoogleCloudChannelV1ListSubscribersResponse.



1181
1182
1183
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1181

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


1169
1170
1171
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1169

def next_page_token
  @next_page_token
end

#service_accountsArray<String>

List of service accounts which have subscriber access to the topic. Corresponds to the JSON property serviceAccounts

Returns:

  • (Array<String>)


1174
1175
1176
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1174

def service_accounts
  @service_accounts
end

#topicString

Name of the topic registered with the reseller. Corresponds to the JSON property topic

Returns:

  • (String)


1179
1180
1181
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1179

def topic
  @topic
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1186
1187
1188
1189
1190
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1186

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