Struct google_analytics3::LinkedForeignAccount
source · pub struct LinkedForeignAccount {
pub linked_account_id: Option<String>,
pub status: Option<String>,
pub kind: Option<String>,
pub remarketing_audience_id: Option<String>,
pub id: Option<String>,
pub internal_web_property_id: Option<String>,
pub web_property_id: Option<String>,
pub type_: Option<String>,
pub eligible_for_search: Option<bool>,
pub account_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§
§linked_account_id: Option<String>The foreign account ID. For example the an AdWords linkedAccountId has the following format XXX-XXX-XXXX.
status: Option<String>The status of this foreign account link.
kind: Option<String>Resource type for linked foreign account.
remarketing_audience_id: Option<String>Remarketing audience ID to which this linked foreign account belongs.
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.
web_property_id: Option<String>Web property ID of the form UA-XXXXX-YY to which this linked foreign account belongs.
type_: Option<String>The type of the foreign account. For example, ADWORDS_LINKS, DBM_LINKS, MCC_LINKS or OPTIMIZE.
eligible_for_search: Option<bool>Boolean indicating whether this is eligible for search.
account_id: Option<String>Account ID 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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