pub struct InviteListResponse {
pub data: Vec<Invite>,
pub first_id: Option<String>,
pub has_more: Option<bool>,
pub last_id: Option<String>,
pub object: String,
}
Fields§
§data: Vec<Invite>
§first_id: Option<String>
The first invite_id
in the retrieved list
has_more: Option<bool>
The has_more
property is used for pagination to indicate there are additional results.
last_id: Option<String>
The last invite_id
in the retrieved list
object: String
The object type, which is always list
Trait Implementations§
Source§impl Debug for InviteListResponse
impl Debug for InviteListResponse
Source§impl<'de> Deserialize<'de> for InviteListResponse
impl<'de> Deserialize<'de> for InviteListResponse
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
Auto Trait Implementations§
impl Freeze for InviteListResponse
impl RefUnwindSafe for InviteListResponse
impl Send for InviteListResponse
impl Sync for InviteListResponse
impl Unpin for InviteListResponse
impl UnwindSafe for InviteListResponse
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