Class: Google::Apis::DisplayvideoV3::SdfDownloadTaskMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb

Overview

Type for the metadata returned by SdfDownloadTaskService.CreateSdfDownloadTask.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SdfDownloadTaskMetadata

Returns a new instance of SdfDownloadTaskMetadata.



12075
12076
12077
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12075

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

The time when the operation was created. Corresponds to the JSON property createTime

Returns:

  • (String)


12063
12064
12065
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12063

def create_time
  @create_time
end

#end_timeString

The time when execution was completed. Corresponds to the JSON property endTime

Returns:

  • (String)


12068
12069
12070
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12068

def end_time
  @end_time
end

#versionString

The SDF version used to execute this download task. Corresponds to the JSON property version

Returns:

  • (String)


12073
12074
12075
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12073

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12080
12081
12082
12083
12084
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12080

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