Class: Google::Apis::VisionV1::OperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::OperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb
Overview
Contains metadata for the BatchAnnotateImages operation.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time when the batch request was received.
-
#state ⇒ String
Current state of the batch operation.
-
#update_time ⇒ String
The time when the operation result was last updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationMetadata
constructor
A new instance of OperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OperationMetadata
Returns a new instance of OperationMetadata.
9299 9300 9301 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9299 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time when the batch request was received.
Corresponds to the JSON property createTime
9287 9288 9289 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9287 def create_time @create_time end |
#state ⇒ String
Current state of the batch operation.
Corresponds to the JSON property state
9292 9293 9294 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9292 def state @state end |
#update_time ⇒ String
The time when the operation result was last updated.
Corresponds to the JSON property updateTime
9297 9298 9299 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9297 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9304 9305 9306 9307 9308 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9304 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |