Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListSubscribersResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListSubscribersResponse
- 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
-
#next_page_token ⇒ String
A token that can be sent as
page_token
to retrieve the next page. -
#service_accounts ⇒ Array<String>
List of service accounts which have subscriber access to the topic.
-
#topic ⇒ String
Name of the topic registered with the reseller.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1ListSubscribersResponse
constructor
A new instance of GoogleCloudChannelV1ListSubscribersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ListSubscribersResponse
Returns a new instance of GoogleCloudChannelV1ListSubscribersResponse.
1117 1118 1119 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1117 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1105 1106 1107 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1105 def next_page_token @next_page_token end |
#service_accounts ⇒ Array<String>
List of service accounts which have subscriber access to the topic.
Corresponds to the JSON property serviceAccounts
1110 1111 1112 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1110 def service_accounts @service_accounts end |
#topic ⇒ String
Name of the topic registered with the reseller.
Corresponds to the JSON property topic
1115 1116 1117 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1115 def topic @topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1122 1123 1124 1125 1126 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1122 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 |