Class: Google::Apis::ApigeeregistryV1::ListApiSpecRevisionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeregistryV1::ListApiSpecRevisionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigeeregistry_v1/classes.rb,
lib/google/apis/apigeeregistry_v1/representations.rb,
lib/google/apis/apigeeregistry_v1/representations.rb
Overview
Response message for ListApiSpecRevisionsResponse.
Instance Attribute Summary collapse
-
#api_specs ⇒ Array<Google::Apis::ApigeeregistryV1::ApiSpec>
The revisions of the spec.
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListApiSpecRevisionsResponse
constructor
A new instance of ListApiSpecRevisionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListApiSpecRevisionsResponse
Returns a new instance of ListApiSpecRevisionsResponse.
893 894 895 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 893 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_specs ⇒ Array<Google::Apis::ApigeeregistryV1::ApiSpec>
The revisions of the spec.
Corresponds to the JSON property apiSpecs
885 886 887 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 885 def api_specs @api_specs end |
#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
891 892 893 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 891 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
898 899 900 901 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 898 def update!(**args) @api_specs = args[:api_specs] if args.key?(:api_specs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |