class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListApiCategoriesResponse

the response for ListApiCategoriesRequest.

Attributes

data[RW]

Details of categories. Corresponds to the JSON property `data` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryData>]

error_code[RW]

ID that can be used to find errors in the log files. Corresponds to the JSON property `errorCode` @return [String]

message[RW]

Description of the operation. Corresponds to the JSON property `message` @return [String]

request_id[RW]

ID that can be used to find request details in the log files. Corresponds to the JSON property `requestId` @return [String]

status[RW]

Status of the operation. Corresponds to the JSON property `status` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4016
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 4021
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)
  @request_id = args[:request_id] if args.key?(:request_id)
  @status = args[:status] if args.key?(:status)
end