class Google::Apis::PubsubV1::ListSchemasResponse
Response for the `ListSchemas` method.
Attributes
next_page_token[RW]
If not empty, indicates that there may be more schemas that match the request; this value should be passed in a new `ListSchemasRequest`. Corresponds to the JSON property `nextPageToken` @return [String]
schemas[RW]
The resulting schemas. Corresponds to the JSON property `schemas` @return [Array<Google::Apis::PubsubV1::Schema>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/pubsub_v1/classes.rb, line 372 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/pubsub_v1/classes.rb, line 377 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @schemas = args[:schemas] if args.key?(:schemas) end