Class: Google::Apis::HealthcareV1::ProgressCounter
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::HealthcareV1::ProgressCounter
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb 
Overview
ProgressCounter provides counters to describe an operation's progress.
Instance Attribute Summary collapse
- 
  
    
      #failure  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of units that failed in the operation.
 - 
  
    
      #pending  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of units that are pending in the operation.
 - 
  
    
      #success  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of units that succeeded in the operation.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProgressCounter 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ProgressCounter.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ProgressCounter
Returns a new instance of ProgressCounter.
      4174 4175 4176  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4174 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#failure ⇒ Fixnum
The number of units that failed in the operation.
Corresponds to the JSON property failure
      4162 4163 4164  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4162 def failure @failure end  | 
  
#pending ⇒ Fixnum
The number of units that are pending in the operation.
Corresponds to the JSON property pending
      4167 4168 4169  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4167 def pending @pending end  | 
  
#success ⇒ Fixnum
The number of units that succeeded in the operation.
Corresponds to the JSON property success
      4172 4173 4174  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4172 def success @success end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4179 4180 4181 4182 4183  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4179 def update!(**args) @failure = args[:failure] if args.key?(:failure) @pending = args[:pending] if args.key?(:pending) @success = args[:success] if args.key?(:success) end  |