class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory

the Api category resource wrapped with response status, error_code etc.

Attributes

data[RW]

the Api category resource. Corresponds to the JSON property `data` @return [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 390
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 395
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