pub struct AccountYouTubeChannelLink {
pub status: Option<String>,
pub channel_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 YouTube channel. Upon retrieval, it represents the actual status of the link and can be either active if it was approved in YT Creator Studio 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.
channel_id: Option<String>Channel ID.
Trait Implementations§
source§impl Clone for AccountYouTubeChannelLink
impl Clone for AccountYouTubeChannelLink
source§fn clone(&self) -> AccountYouTubeChannelLink
fn clone(&self) -> AccountYouTubeChannelLink
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AccountYouTubeChannelLink
impl Debug for AccountYouTubeChannelLink
source§impl Default for AccountYouTubeChannelLink
impl Default for AccountYouTubeChannelLink
source§fn default() -> AccountYouTubeChannelLink
fn default() -> AccountYouTubeChannelLink
source§impl<'de> Deserialize<'de> for AccountYouTubeChannelLink
impl<'de> Deserialize<'de> for AccountYouTubeChannelLink
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>,
impl Part for AccountYouTubeChannelLink
Auto Trait Implementations§
impl Freeze for AccountYouTubeChannelLink
impl RefUnwindSafe for AccountYouTubeChannelLink
impl Send for AccountYouTubeChannelLink
impl Sync for AccountYouTubeChannelLink
impl Unpin for AccountYouTubeChannelLink
impl UnwindSafe for AccountYouTubeChannelLink
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