Class: Google::Apis::DisplayvideoV1::SdfDownloadTaskMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::SdfDownloadTaskMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v1/classes.rb,
lib/google/apis/displayvideo_v1/representations.rb,
lib/google/apis/displayvideo_v1/representations.rb
Overview
Type for the metadata returned by [SdfDownloadTaskService. CreateSdfDownloadTask].
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time when the operation was created.
-
#end_time ⇒ String
The time when execution was completed.
-
#version ⇒ String
The SDF version used to execute this download task.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SdfDownloadTaskMetadata
constructor
A new instance of SdfDownloadTaskMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SdfDownloadTaskMetadata
Returns a new instance of SdfDownloadTaskMetadata.
9771 9772 9773 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9771 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time when the operation was created.
Corresponds to the JSON property createTime
9759 9760 9761 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9759 def create_time @create_time end |
#end_time ⇒ String
The time when execution was completed.
Corresponds to the JSON property endTime
9764 9765 9766 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9764 def end_time @end_time end |
#version ⇒ String
The SDF version used to execute this download task.
Corresponds to the JSON property version
9769 9770 9771 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9769 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9776 9777 9778 9779 9780 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9776 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @end_time = args[:end_time] if args.key?(:end_time) @version = args[:version] if args.key?(:version) end |