Class: Google::Apis::ApigeeregistryV1::ListApiSpecsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeregistryV1::ListApiSpecsResponse
- 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 ListApiSpecs.
Instance Attribute Summary collapse
-
#api_specs ⇒ Array<Google::Apis::ApigeeregistryV1::ApiSpec>
The specs from the specified publisher.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListApiSpecsResponse
constructor
A new instance of ListApiSpecsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListApiSpecsResponse
Returns a new instance of ListApiSpecsResponse.
889 890 891 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 889 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_specs ⇒ Array<Google::Apis::ApigeeregistryV1::ApiSpec>
The specs from the specified publisher.
Corresponds to the JSON property apiSpecs
881 882 883 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 881 def api_specs @api_specs end |
#next_page_token ⇒ String
A token, which 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
887 888 889 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 887 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
894 895 896 897 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 894 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 |