class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper
Attributes
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 852 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 857 def update!(**args) @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