Struct ory_client::models::project_invite::ProjectInvite
source · pub struct ProjectInvite {
pub created_at: String,
pub id: String,
pub invitee_email: String,
pub invitee_id: Option<String>,
pub owner_email: String,
pub owner_id: String,
pub project_id: String,
pub status: StatusEnum,
pub updated_at: String,
}Fields§
§created_at: StringThe Project’s Revision Creation Date
id: StringThe invite’s ID.
invitee_email: StringThe invitee’s email
invitee_id: Option<String>§owner_email: StringThe invite owner’s email Usually the project’s owner email
owner_id: StringThe invite owner’s ID Usually the project’s owner
project_id: StringThe Project’s ID this invite is associated with
status: StatusEnumThe invite’s status Keeps track of the invites status such as pending, accepted, declined, expired pending PENDING accepted ACCEPTED declined DECLINED expired EXPIRED cancelled CANCELLED removed REMOVED
updated_at: StringLast Time Project’s Revision was Updated
Implementations§
source§impl ProjectInvite
impl ProjectInvite
Trait Implementations§
source§impl Clone for ProjectInvite
impl Clone for ProjectInvite
source§fn clone(&self) -> ProjectInvite
fn clone(&self) -> ProjectInvite
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 ProjectInvite
impl Debug for ProjectInvite
source§impl<'de> Deserialize<'de> for ProjectInvite
impl<'de> Deserialize<'de> for ProjectInvite
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 PartialEq<ProjectInvite> for ProjectInvite
impl PartialEq<ProjectInvite> for ProjectInvite
source§fn eq(&self, other: &ProjectInvite) -> bool
fn eq(&self, other: &ProjectInvite) -> bool
This method tests for
self and other values to be equal, and is used
by ==.