Struct ory_client::models::project::Project
source · pub struct Project {
pub id: String,
pub name: String,
pub revision_id: String,
pub services: Box<ProjectServices>,
pub slug: String,
pub state: StateEnum,
}Fields§
§id: StringThe project’s ID.
name: StringThe name of the project.
revision_id: StringThe configuration revision ID.
services: Box<ProjectServices>§slug: StringThe project’s slug
state: StateEnumThe state of the project. running Running halted Halted
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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