Class: Google::Apis::GameservicesV1beta::OperationStatus
- Inherits:
-
Object
- Object
- Google::Apis::GameservicesV1beta::OperationStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gameservices_v1beta/classes.rb,
lib/google/apis/gameservices_v1beta/representations.rb,
lib/google/apis/gameservices_v1beta/representations.rb
Instance Attribute Summary collapse
-
#done ⇒ Boolean
(also: #done?)
Output only.
-
#error_code ⇒ String
The error code in case of failures.
-
#error_message ⇒ String
The human-readable error message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationStatus
constructor
A new instance of OperationStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OperationStatus
Returns a new instance of OperationStatus.
1518 1519 1520 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1518 def initialize(**args) update!(**args) end |
Instance Attribute Details
#done ⇒ Boolean Also known as: done?
Output only. Whether the operation is done or still in progress.
Corresponds to the JSON property done
1505 1506 1507 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1505 def done @done end |
#error_code ⇒ String
The error code in case of failures.
Corresponds to the JSON property errorCode
1511 1512 1513 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1511 def error_code @error_code end |
#error_message ⇒ String
The human-readable error message.
Corresponds to the JSON property errorMessage
1516 1517 1518 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1516 def @error_message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1523 1524 1525 1526 1527 |
# File 'lib/google/apis/gameservices_v1beta/classes.rb', line 1523 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 |