Struct google_content2::AccountAdwordsLink
source · pub struct AccountAdwordsLink {
pub status: Option<String>,
pub adwords_id: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§status: Option<String>Status of the link between this Merchant Center account and the AdWords account. Upon retrieval, it represents the actual status of the link and can be either active if it was approved in Google AdWords or pending if it’s pending approval. Upon insertion, it represents the intended status of the link. Re-uploading a link with status active when it’s still pending or with status pending when it’s already active will have no effect: the status will remain unchanged. Re-uploading a link with deprecated status inactive is equivalent to not submitting the link at all and will delete the link if it was active or cancel the link request if it was pending.
adwords_id: Option<String>Customer ID of the AdWords account.
Trait Implementations§
source§impl Clone for AccountAdwordsLink
impl Clone for AccountAdwordsLink
source§fn clone(&self) -> AccountAdwordsLink
fn clone(&self) -> AccountAdwordsLink
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AccountAdwordsLink
impl Debug for AccountAdwordsLink
source§impl Default for AccountAdwordsLink
impl Default for AccountAdwordsLink
source§fn default() -> AccountAdwordsLink
fn default() -> AccountAdwordsLink
source§impl Deserialize for AccountAdwordsLink
impl Deserialize for AccountAdwordsLink
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
source§impl Serialize for AccountAdwordsLink
impl Serialize for AccountAdwordsLink
impl Part for AccountAdwordsLink
Auto Trait Implementations§
impl Freeze for AccountAdwordsLink
impl RefUnwindSafe for AccountAdwordsLink
impl Send for AccountAdwordsLink
impl Sync for AccountAdwordsLink
impl Unpin for AccountAdwordsLink
impl UnwindSafe for AccountAdwordsLink
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