1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Ory APIs
*
* Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
*
* The version of the OpenAPI document: v0.0.1-alpha.1
* Contact: support@ory.sh
* Generated by: https://openapi-generator.tech
*/
/// Identity : An identity can be a real human, a service, an IoT device - everything that can be described as an \"actor\" in a system.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct Identity {
#[serde(rename = "id")]
pub id: String,
/// RecoveryAddresses contains all the addresses that can be used to recover an identity.
#[serde(rename = "recovery_addresses", skip_serializing_if = "Option::is_none")]
pub recovery_addresses: Option<Vec<crate::models::RecoveryAddress>>,
/// SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.
#[serde(rename = "schema_id")]
pub schema_id: String,
/// SchemaURL is the URL of the endpoint where the identity's traits schema can be fetched from. format: url
#[serde(rename = "schema_url")]
pub schema_url: String,
/// Traits represent an identity's traits. The identity is able to create, modify, and delete traits in a self-service manner. The input will always be validated against the JSON Schema defined in `schema_url`.
#[serde(rename = "traits")]
pub traits: Option<serde_json::Value>,
/// VerifiableAddresses contains all the addresses that can be verified by the user.
#[serde(rename = "verifiable_addresses", skip_serializing_if = "Option::is_none")]
pub verifiable_addresses: Option<Vec<crate::models::VerifiableIdentityAddress>>,
}
impl Identity {
/// An identity can be a real human, a service, an IoT device - everything that can be described as an \"actor\" in a system.
pub fn new(id: String, schema_id: String, schema_url: String, traits: Option<serde_json::Value>) -> Identity {
Identity {
id,
recovery_addresses: None,
schema_id,
schema_url,
traits,
verifiable_addresses: None,
}
}
}