Class: Google::Apis::ApigeeregistryV1::ListApisResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListApisResponse

Returns a new instance of ListApisResponse.



941
942
943
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 941

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

Instance Attribute Details

#apisArray<Google::Apis::ApigeeregistryV1::Api>

The APIs from the specified publisher. Corresponds to the JSON property apis



933
934
935
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 933

def apis
  @apis
end

#next_page_tokenString

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

Returns:

  • (String)


939
940
941
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 939

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



946
947
948
949
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 946

def update!(**args)
  @apis = args[:apis] if args.key?(:apis)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end