class Google::Apis::GameservicesV1::OperationStatus
Attributes
done[RW]
Output only. Whether the operation is done or still in progress. Corresponds to the JSON property `done` @return [Boolean]
done?[RW]
Output only. Whether the operation is done or still in progress. Corresponds to the JSON property `done` @return [Boolean]
error_code[RW]
The error code in case of failures. Corresponds to the JSON property `errorCode` @return [String]
error_message[RW]
The human-readable error message. Corresponds to the JSON property `errorMessage` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gameservices_v1/classes.rb, line 1477 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gameservices_v1/classes.rb, line 1482 def update!(**args) @done = args[:done] if args.key?(:done) @error_code = args[:error_code] if args.key?(:error_code) @error_message = args[:error_message] if args.key?(:error_message) end