Class: Google::Apis::DisplayvideoV1::CreateSdfDownloadTaskRequest

Inherits:
Object
  • Object
show all
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

Request message for [SdfDownloadTaskService.CreateSdfDownloadTask].

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateSdfDownloadTaskRequest

Returns a new instance of CreateSdfDownloadTaskRequest.



2611
2612
2613
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2611

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

Instance Attribute Details

#advertiser_idFixnum

The ID of the advertiser to download SDF for. Corresponds to the JSON property advertiserId

Returns:

  • (Fixnum)


2580
2581
2582
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2580

def advertiser_id
  @advertiser_id
end

#id_filterGoogle::Apis::DisplayvideoV1::IdFilter

A filtering option that filters entities by their entity IDs. Corresponds to the JSON property idFilter



2585
2586
2587
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2585

def id_filter
  @id_filter
end

#inventory_source_filterGoogle::Apis::DisplayvideoV1::InventorySourceFilter

A filtering option for filtering on Inventory Source entities. Corresponds to the JSON property inventorySourceFilter



2590
2591
2592
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2590

def inventory_source_filter
  @inventory_source_filter
end

#parent_entity_filterGoogle::Apis::DisplayvideoV1::ParentEntityFilter

A filtering option that filters on selected file types belonging to a chosen set of filter entities. Corresponds to the JSON property parentEntityFilter



2596
2597
2598
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2596

def parent_entity_filter
  @parent_entity_filter
end

#partner_idFixnum

The ID of the partner to download SDF for. Corresponds to the JSON property partnerId

Returns:

  • (Fixnum)


2601
2602
2603
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2601

def partner_id
  @partner_id
end

#versionString

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

Returns:

  • (String)


2609
2610
2611
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2609

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2616
2617
2618
2619
2620
2621
2622
2623
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2616

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