class Google::Apis::DisplayvideoV1::CreateSdfDownloadTaskRequest

Request message for [SdfDownloadTaskService.CreateSdfDownloadTask].

Attributes

advertiser_id[RW]

The ID of the advertiser to download SDF for. Corresponds to the JSON property `advertiserId` @return [Fixnum]

id_filter[RW]

A filtering option that filters entities by their entity IDs. Corresponds to the JSON property `idFilter` @return [Google::Apis::DisplayvideoV1::IdFilter]

inventory_source_filter[RW]

A filtering option for filtering on Inventory Source entities. Corresponds to the JSON property `inventorySourceFilter` @return [Google::Apis::DisplayvideoV1::InventorySourceFilter]

parent_entity_filter[RW]

A filtering option that filters on selected file types belonging to a chosen set of filter entities. Corresponds to the JSON property `parentEntityFilter` @return [Google::Apis::DisplayvideoV1::ParentEntityFilter]

partner_id[RW]

The ID of the partner to download SDF for. Corresponds to the JSON property `partnerId` @return [Fixnum]

version[RW]

Required. The SDF version of the downloaded file. If set to ` SDF_VERSION_UNSPECIFIED`, this will default to the version specified by the advertiser or partner identified by `root_id`. An advertiser inherits its SDF version from its partner unless configured otherwise. 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 2949
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 2954
def update!(**args)
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
  @id_filter = args[:id_filter] if args.key?(:id_filter)
  @inventory_source_filter = args[:inventory_source_filter] if args.key?(:inventory_source_filter)
  @parent_entity_filter = args[:parent_entity_filter] if args.key?(:parent_entity_filter)
  @partner_id = args[:partner_id] if args.key?(:partner_id)
  @version = args[:version] if args.key?(:version)
end