pub struct LinkedForeignAccount {
pub account_id: Option<String>,
pub eligible_for_search: Option<bool>,
pub id: Option<String>,
pub internal_web_property_id: Option<String>,
pub kind: Option<String>,
pub linked_account_id: Option<String>,
pub remarketing_audience_id: Option<String>,
pub status: Option<String>,
pub type_: Option<String>,
pub web_property_id: Option<String>,
}
Expand description
JSON template for an Analytics Remarketing Audience Foreign Link.
This type is not used in any activity, and only used as part of another schema.
Fields§
§account_id: Option<String>
Account ID to which this linked foreign account belongs.
eligible_for_search: Option<bool>
Boolean indicating whether this is eligible for search.
id: Option<String>
Entity ad account link ID.
internal_web_property_id: Option<String>
Internal ID for the web property to which this linked foreign account belongs.
kind: Option<String>
Resource type for linked foreign account.
linked_account_id: Option<String>
The foreign account ID. For example the an Google Ads linkedAccountId
has the following format XXX-XXX-XXXX.
remarketing_audience_id: Option<String>
Remarketing audience ID to which this linked foreign account belongs.
status: Option<String>
The status of this foreign account link.
type_: Option<String>
The type of the foreign account. For example, ADWORDS_LINKS
, DBM_LINKS
, MCC_LINKS
or OPTIMIZE
.
web_property_id: Option<String>
Web property ID of the form UA-XXXXX-YY to which this linked foreign account belongs.
Trait Implementations§
Source§impl Clone for LinkedForeignAccount
impl Clone for LinkedForeignAccount
Source§fn clone(&self) -> LinkedForeignAccount
fn clone(&self) -> LinkedForeignAccount
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for LinkedForeignAccount
impl Debug for LinkedForeignAccount
Source§impl Default for LinkedForeignAccount
impl Default for LinkedForeignAccount
Source§fn default() -> LinkedForeignAccount
fn default() -> LinkedForeignAccount
Source§impl<'de> Deserialize<'de> for LinkedForeignAccount
impl<'de> Deserialize<'de> for LinkedForeignAccount
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 LinkedForeignAccount
impl Serialize for LinkedForeignAccount
impl Part for LinkedForeignAccount
Auto Trait Implementations§
impl Freeze for LinkedForeignAccount
impl RefUnwindSafe for LinkedForeignAccount
impl Send for LinkedForeignAccount
impl Sync for LinkedForeignAccount
impl Unpin for LinkedForeignAccount
impl UnwindSafe for LinkedForeignAccount
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