pub struct CreateTeamInviteKeyResponse {
pub key_id: String,
pub invite_key: String,
pub role: TeamRole,
pub expires_at: String,
}Expand description
Create response for team invite key generation.
invite_key is only returned once.
Fields§
§key_id: String§invite_key: String§role: TeamRole§expires_at: StringTrait Implementations§
Source§impl Debug for CreateTeamInviteKeyResponse
impl Debug for CreateTeamInviteKeyResponse
Source§impl<'de> Deserialize<'de> for CreateTeamInviteKeyResponse
impl<'de> Deserialize<'de> for CreateTeamInviteKeyResponse
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 CreateTeamInviteKeyResponse
impl RefUnwindSafe for CreateTeamInviteKeyResponse
impl Send for CreateTeamInviteKeyResponse
impl Sync for CreateTeamInviteKeyResponse
impl Unpin for CreateTeamInviteKeyResponse
impl UnwindSafe for CreateTeamInviteKeyResponse
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