[][src]Struct mailchimp::types::AuthorizedAppType

pub struct AuthorizedAppType {
    pub id: u64,
    pub name: String,
    pub description: String,
    pub users: Vec<String>,
    pub _links: Vec<LinkType>,
    pub _api: Rc<MailchimpApi>,
}

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

impl Clone for AuthorizedAppType[src]

impl Debug for AuthorizedAppType[src]

impl<'de> Deserialize<'de> for AuthorizedAppType[src]

impl MailchimpCollection<AuthorizedAppType> for AuthorizedAppsType[src]

fn get_total_items(&self) -> u64[src]

Total Items

fn get_values(&self) -> Vec<AuthorizedAppType>[src]

Data

impl Serialize for AuthorizedAppType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.