pub struct AuthorizedApps { /* private fields */ }
Expand description
Implement Mailchimp Authorized Apps Endpoint
Manage registered, connected apps for your Mailchimp account with the Authorized Apps endpoints.
Implementations§
Source§impl AuthorizedApps
impl AuthorizedApps
Sourcepub fn new(api: MailchimpApi) -> Self
pub fn new(api: MailchimpApi) -> Self
Arguments: api: MailchimpApi
Get a list of an account’s registered, connected applications.
Arguments: filters: Filters fields: A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation. exclude_fields: A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation. count: The number of records to return. offset: The number of records from a collection to skip. Iterating over large collections with this parameter can be slow. Default value is 0.
Retrieve OAuth2-based credentials to associate API calls with your application.
Arguments: client_id: Id o nombre de usuario único para la autorización client_secret: Contraseña del cliente para la autorización
Get information about a specific authorized app
Arguments: app_id: identificador de la aplicación autorizada filters: Filtros que requieras aplicar a la hora de obtener las aplicaciones fields: A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation. exclude_fields: A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation.
Sourcepub fn iter(
&self,
filters: AuthorizedFilter,
) -> MalchimpIter<AuthorizedAppsBuilder> ⓘ
pub fn iter( &self, filters: AuthorizedFilter, ) -> MalchimpIter<AuthorizedAppsBuilder> ⓘ
Returns a iterator to access all applications
Trait Implementations§
Source§impl Clone for AuthorizedApps
impl Clone for AuthorizedApps
Source§fn clone(&self) -> AuthorizedApps
fn clone(&self) -> AuthorizedApps
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more