Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListApiDocsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListApiDocsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Instance Attribute Summary collapse
-
#data ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiDoc>
The catalog item resources.
-
#error_code ⇒ String
Unique error code for the request, if any.
-
#message ⇒ String
Description of the operation.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#request_id ⇒ String
Unique ID of the request.
-
#status ⇒ String
Status of the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListApiDocsResponse
constructor
A new instance of GoogleCloudApigeeV1ListApiDocsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListApiDocsResponse
Returns a new instance of GoogleCloudApigeeV1ListApiDocsResponse.
5743 5744 5745 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5743 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiDoc>
The catalog item resources.
Corresponds to the JSON property data
5715 5716 5717 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5715 def data @data end |
#error_code ⇒ String
Unique error code for the request, if any.
Corresponds to the JSON property errorCode
5720 5721 5722 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5720 def error_code @error_code end |
#message ⇒ String
Description of the operation.
Corresponds to the JSON property message
5725 5726 5727 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5725 def @message 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
5731 5732 5733 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5731 def next_page_token @next_page_token end |
#request_id ⇒ String
Unique ID of the request.
Corresponds to the JSON property requestId
5736 5737 5738 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5736 def request_id @request_id end |
#status ⇒ String
Status of the operation.
Corresponds to the JSON property status
5741 5742 5743 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5741 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5748 5749 5750 5751 5752 5753 5754 5755 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5748 def update!(**args) @data = args[:data] if args.key?(:data) @error_code = args[:error_code] if args.key?(:error_code) @message = args[:message] if args.key?(:message) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @request_id = args[:request_id] if args.key?(:request_id) @status = args[:status] if args.key?(:status) end |