pub struct InvitationResponse {
pub id: String,
pub team_id: String,
pub team_name: String,
pub email: Option<String>,
pub oauth_provider: Option<String>,
pub oauth_provider_username: Option<String>,
pub invited_by_nickname: String,
pub role: TeamRole,
pub status: InvitationStatus,
pub created_at: String,
}Expand description
Single invitation record returned by list and detail endpoints.
Fields§
§id: String§team_id: String§team_name: String§email: Option<String>§oauth_provider: Option<String>§oauth_provider_username: Option<String>§invited_by_nickname: String§role: TeamRole§status: InvitationStatus§created_at: StringTrait Implementations§
Source§impl Debug for InvitationResponse
impl Debug for InvitationResponse
Source§impl<'de> Deserialize<'de> for InvitationResponse
impl<'de> Deserialize<'de> for InvitationResponse
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 InvitationResponse
impl RefUnwindSafe for InvitationResponse
impl Send for InvitationResponse
impl Sync for InvitationResponse
impl Unpin for InvitationResponse
impl UnwindSafe for InvitationResponse
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