Class: Google::Apis::DisplayvideoV2::SdfDownloadTaskMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::SdfDownloadTaskMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/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.
10454 10455 10456 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10454 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
10442 10443 10444 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10442 def create_time @create_time end |
#end_time ⇒ String
The time when execution was completed.
Corresponds to the JSON property endTime
10447 10448 10449 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10447 def end_time @end_time end |
#version ⇒ String
The SDF version used to execute this download task.
Corresponds to the JSON property version
10452 10453 10454 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10452 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10459 10460 10461 10462 10463 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10459 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 |