pub struct CreativeGroup {
pub account_id: Option<i64>,
pub advertiser_id: Option<i64>,
pub advertiser_id_dimension_value: Option<DimensionValue>,
pub group_number: Option<i32>,
pub id: Option<i64>,
pub kind: Option<String>,
pub name: Option<String>,
pub subaccount_id: Option<i64>,
}
Expand description
Contains properties of a creative group.
§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).
- get creative groups (response)
- insert creative groups (request|response)
- list creative groups (none)
- patch creative groups (request|response)
- update creative groups (request|response)
Fields§
§account_id: Option<i64>
Account ID of this creative group. This is a read-only field that can be left blank.
advertiser_id: Option<i64>
Advertiser ID of this creative group. This is a required field on insertion.
advertiser_id_dimension_value: Option<DimensionValue>
Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
group_number: Option<i32>
Subgroup of the creative group. Assign your creative groups to a subgroup in order to filter or manage them more easily. This field is required on insertion and is read-only after insertion. Acceptable values are 1 to 2, inclusive.
id: Option<i64>
ID of this creative group. This is a read-only, auto-generated field.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “dfareporting#creativeGroup”.
name: Option<String>
Name of this creative group. This is a required field and must be less than 256 characters long and unique among creative groups of the same advertiser.
subaccount_id: Option<i64>
Subaccount ID of this creative group. This is a read-only field that can be left blank.
Trait Implementations§
Source§impl Clone for CreativeGroup
impl Clone for CreativeGroup
Source§fn clone(&self) -> CreativeGroup
fn clone(&self) -> CreativeGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CreativeGroup
impl Debug for CreativeGroup
Source§impl Default for CreativeGroup
impl Default for CreativeGroup
Source§fn default() -> CreativeGroup
fn default() -> CreativeGroup
Source§impl<'de> Deserialize<'de> for CreativeGroup
impl<'de> Deserialize<'de> for CreativeGroup
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>,
Source§impl Serialize for CreativeGroup
impl Serialize for CreativeGroup
impl RequestValue for CreativeGroup
impl Resource for CreativeGroup
impl ResponseResult for CreativeGroup
Auto Trait Implementations§
impl Freeze for CreativeGroup
impl RefUnwindSafe for CreativeGroup
impl Send for CreativeGroup
impl Sync for CreativeGroup
impl Unpin for CreativeGroup
impl UnwindSafe for CreativeGroup
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