pub struct CreativeGroup {
pub kind: Option<String>,
pub subaccount_id: Option<String>,
pub name: Option<String>,
pub group_number: Option<i32>,
pub advertiser_id: Option<String>,
pub advertiser_id_dimension_value: Option<DimensionValue>,
pub id: Option<String>,
pub account_id: Option<String>,
}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)
- update creative groups (request|response)
- patch creative groups (request|response)
- list creative groups (none)
- insert creative groups (request|response)
Fields§
§kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “dfareporting#creativeGroup”.
subaccount_id: Option<String>Subaccount ID of this creative group. This is a read-only field that can be left blank.
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.
group_number: Option<i32>Subgroup of the creative group. Assign your creative groups to one of the following subgroups 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
- 2
advertiser_id: Option<String>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.
id: Option<String>ID of this creative group. This is a read-only, auto-generated field.
account_id: Option<String>Account 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> 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