Class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firestore_v1/classes.rb,
lib/google/apis/firestore_v1/representations.rb,
lib/google/apis/firestore_v1/representations.rb
Overview
Describes the progress of the operation. Unit of work is generic and must be interpreted based on where Progress is used.
Instance Attribute Summary collapse
-
#completed_work ⇒ Fixnum
The amount of work completed.
-
#estimated_work ⇒ Fixnum
The amount of work estimated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirestoreAdminV1Progress
constructor
A new instance of GoogleFirestoreAdminV1Progress.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirestoreAdminV1Progress
Returns a new instance of GoogleFirestoreAdminV1Progress.
2728 2729 2730 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 2728 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completed_work ⇒ Fixnum
The amount of work completed.
Corresponds to the JSON property completedWork
2721 2722 2723 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 2721 def completed_work @completed_work end |
#estimated_work ⇒ Fixnum
The amount of work estimated.
Corresponds to the JSON property estimatedWork
2726 2727 2728 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 2726 def estimated_work @estimated_work end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2733 2734 2735 2736 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 2733 def update!(**args) @completed_work = args[:completed_work] if args.key?(:completed_work) @estimated_work = args[:estimated_work] if args.key?(:estimated_work) end |