class Google::Apis::DisplayvideoV1::SdfDownloadTaskMetadata

Type for the metadata returned by [SdfDownloadTaskService. CreateSdfDownloadTask].

Attributes

create_time[RW]

The time when the operation was created. Corresponds to the JSON property `createTime` @return [String]

end_time[RW]

The time when execution was completed. Corresponds to the JSON property `endTime` @return [String]

version[RW]

The SDF version used to execute this download task. Corresponds to the JSON property `version` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 8658
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 8663
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