Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListApiDocsResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListApiDocsResponse

Returns a new instance of GoogleCloudApigeeV1ListApiDocsResponse.



5890
5891
5892
# File 'lib/google/apis/apigee_v1/classes.rb', line 5890

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

Instance Attribute Details

#dataArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiDoc>

The catalog item resources. Corresponds to the JSON property data



5862
5863
5864
# File 'lib/google/apis/apigee_v1/classes.rb', line 5862

def data
  @data
end

#error_codeString

Unique error code for the request, if any. Corresponds to the JSON property errorCode

Returns:

  • (String)


5867
5868
5869
# File 'lib/google/apis/apigee_v1/classes.rb', line 5867

def error_code
  @error_code
end

#messageString

Description of the operation. Corresponds to the JSON property message

Returns:

  • (String)


5872
5873
5874
# File 'lib/google/apis/apigee_v1/classes.rb', line 5872

def message
  @message
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)


5878
5879
5880
# File 'lib/google/apis/apigee_v1/classes.rb', line 5878

def next_page_token
  @next_page_token
end

#request_idString

Unique ID of the request. Corresponds to the JSON property requestId

Returns:

  • (String)


5883
5884
5885
# File 'lib/google/apis/apigee_v1/classes.rb', line 5883

def request_id
  @request_id
end

#statusString

Status of the operation. Corresponds to the JSON property status

Returns:

  • (String)


5888
5889
5890
# File 'lib/google/apis/apigee_v1/classes.rb', line 5888

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5895
5896
5897
5898
5899
5900
5901
5902
# File 'lib/google/apis/apigee_v1/classes.rb', line 5895

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