pub struct CreateSdfDownloadTaskRequest {
pub advertiser_id: Option<i64>,
pub id_filter: Option<IdFilter>,
pub inventory_source_filter: Option<InventorySourceFilter>,
pub parent_entity_filter: Option<ParentEntityFilter>,
pub partner_id: Option<i64>,
pub version: Option<String>,
}
Expand description
Request message for [SdfDownloadTaskService.CreateSdfDownloadTask].
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- create sdfdownloadtasks (request)
Fields§
§advertiser_id: Option<i64>
The ID of the advertiser to download SDF for.
id_filter: Option<IdFilter>
Filters on entities by their entity IDs.
inventory_source_filter: Option<InventorySourceFilter>
Filters on Inventory Sources by their IDs.
parent_entity_filter: Option<ParentEntityFilter>
Filters on selected file types. The entities in each file are filtered by a chosen set of filter entities. The filter entities must be the same type as, or a parent type of, the selected file types.
partner_id: Option<i64>
The ID of the partner to download SDF for.
version: Option<String>
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.
Trait Implementations§
Source§impl Clone for CreateSdfDownloadTaskRequest
impl Clone for CreateSdfDownloadTaskRequest
Source§fn clone(&self) -> CreateSdfDownloadTaskRequest
fn clone(&self) -> CreateSdfDownloadTaskRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CreateSdfDownloadTaskRequest
impl Debug for CreateSdfDownloadTaskRequest
Source§impl Default for CreateSdfDownloadTaskRequest
impl Default for CreateSdfDownloadTaskRequest
Source§fn default() -> CreateSdfDownloadTaskRequest
fn default() -> CreateSdfDownloadTaskRequest
Source§impl<'de> Deserialize<'de> for CreateSdfDownloadTaskRequest
impl<'de> Deserialize<'de> for CreateSdfDownloadTaskRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for CreateSdfDownloadTaskRequest
Auto Trait Implementations§
impl Freeze for CreateSdfDownloadTaskRequest
impl RefUnwindSafe for CreateSdfDownloadTaskRequest
impl Send for CreateSdfDownloadTaskRequest
impl Sync for CreateSdfDownloadTaskRequest
impl Unpin for CreateSdfDownloadTaskRequest
impl UnwindSafe for CreateSdfDownloadTaskRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more