pub struct AuthorizedAppType {
pub id: u64,
pub name: String,
pub description: String,
pub users: Vec<String>,
pub _links: Vec<LinkType>,
pub _api: Rc<MailchimpApi>,
}
Expand description
Authorized App Type
Endpoint GET /authorized-apps/{app_id}
Fields§
§id: u64
The ID for the application.
name: String
The name of the application.
description: String
A short description of the application.
users: Vec<String>
An array of usernames for users who have linked the app.
_links: Vec<LinkType>
A list of link types and descriptions for the API schema documents.
_api: Rc<MailchimpApi>
A list of link types and descriptions for the API schema documents.
Trait Implementations§
Source§impl Clone for AuthorizedAppType
impl Clone for AuthorizedAppType
Source§fn clone(&self) -> AuthorizedAppType
fn clone(&self) -> AuthorizedAppType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthorizedAppType
impl Debug for AuthorizedAppType
Source§impl<'de> Deserialize<'de> for AuthorizedAppType
impl<'de> Deserialize<'de> for AuthorizedAppType
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl MailchimpCollection<AuthorizedAppType> for AuthorizedAppsType
impl MailchimpCollection<AuthorizedAppType> for AuthorizedAppsType
Source§fn get_total_items(&self) -> u64
fn get_total_items(&self) -> u64
Total Items
Source§fn get_values(&self) -> Vec<AuthorizedAppType>
fn get_values(&self) -> Vec<AuthorizedAppType>
Data
Auto Trait Implementations§
impl Freeze for AuthorizedAppType
impl RefUnwindSafe for AuthorizedAppType
impl !Send for AuthorizedAppType
impl !Sync for AuthorizedAppType
impl Unpin for AuthorizedAppType
impl UnwindSafe for AuthorizedAppType
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
Mutably borrows from an owned value. Read more