pub struct CollectionListWebhooks {
pub webhooks: Vec<ListWebhooks>,
pub list_id: String,
pub total_items: u64,
pub _links: Vec<LinkType>,
}
Expand description
Response for endpoint GET /lists/{list_id}/members/{subscriber_hash}/activity
Fields§
§webhooks: Vec<ListWebhooks>
An array of objects, each representing a specific list member.
list_id: String
The unique id for the list.
total_items: u64
The total number of items matching the query regardless of pagination.
_links: Vec<LinkType>
A list of link types and descriptions for the API schema documents.
Trait Implementations§
Source§impl Clone for CollectionListWebhooks
impl Clone for CollectionListWebhooks
Source§fn clone(&self) -> CollectionListWebhooks
fn clone(&self) -> CollectionListWebhooks
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 CollectionListWebhooks
impl Debug for CollectionListWebhooks
Source§impl Default for CollectionListWebhooks
impl Default for CollectionListWebhooks
Source§impl<'de> Deserialize<'de> for CollectionListWebhooks
impl<'de> Deserialize<'de> for CollectionListWebhooks
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<ListWebhooks> for CollectionListWebhooks
impl MailchimpCollection<ListWebhooks> for CollectionListWebhooks
Source§fn get_total_items(&self) -> u64
fn get_total_items(&self) -> u64
Total Items
Source§fn get_values(&self) -> Vec<ListWebhooks>
fn get_values(&self) -> Vec<ListWebhooks>
Data
Auto Trait Implementations§
impl Freeze for CollectionListWebhooks
impl RefUnwindSafe for CollectionListWebhooks
impl !Send for CollectionListWebhooks
impl !Sync for CollectionListWebhooks
impl Unpin for CollectionListWebhooks
impl UnwindSafe for CollectionListWebhooks
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