ory_client/models/
registration_flow.rs

1/*
2 * Ory APIs
3 *
4 * # Introduction 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.  ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages:  | Language       | Download SDK                                                     | Documentation                                                                        | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart           | [pub.dev](https://pub.dev/packages/ory_client)                   | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md)       | | .NET           | [nuget.org](https://www.nuget.org/packages/Ory.Client/)          | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md)     | | Elixir         | [hex.pm](https://hex.pm/packages/ory_client)                     | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md)     | | Go             | [github.com](https://github.com/ory/client-go)                   | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md)         | | Java           | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md)       | | JavaScript     | [npmjs.com](https://www.npmjs.com/package/@ory/client)           | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch)           | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) |  | PHP            | [packagist.org](https://packagist.org/packages/ory/client)       | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md)        | | Python         | [pypi.org](https://pypi.org/project/ory-client/)                 | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md)     | | Ruby           | [rubygems.org](https://rubygems.org/gems/ory-client)             | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md)       | | Rust           | [crates.io](https://crates.io/crates/ory-client)                 | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md)       | 
5 *
6 * The version of the OpenAPI document: v1.17.2
7 * Contact: support@ory.sh
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct RegistrationFlow {
16    /// Active, if set, contains the registration method that is being used. It is initially not set. password CredentialsTypePassword oidc CredentialsTypeOIDC totp CredentialsTypeTOTP lookup_secret CredentialsTypeLookup webauthn CredentialsTypeWebAuthn code CredentialsTypeCodeAuth passkey CredentialsTypePasskey profile CredentialsTypeProfile saml CredentialsTypeSAML link_recovery CredentialsTypeRecoveryLink  CredentialsTypeRecoveryLink is a special credential type linked to the link strategy (recovery flow).  It is not used within the credentials object itself. code_recovery CredentialsTypeRecoveryCode
17    #[serde(rename = "active", skip_serializing_if = "Option::is_none")]
18    pub active: Option<ActiveEnum>,
19    /// ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated.
20    #[serde(rename = "expires_at")]
21    pub expires_at: String,
22    /// ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id>
23    #[serde(rename = "id")]
24    pub id: String,
25    /// IssuedAt is the time (UTC) when the flow occurred.
26    #[serde(rename = "issued_at")]
27    pub issued_at: String,
28    /// Ory OAuth 2.0 Login Challenge.  This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.
29    #[serde(rename = "oauth2_login_challenge", skip_serializing_if = "Option::is_none")]
30    pub oauth2_login_challenge: Option<String>,
31    #[serde(rename = "oauth2_login_request", skip_serializing_if = "Option::is_none")]
32    pub oauth2_login_request: Option<Box<models::OAuth2LoginRequest>>,
33    #[serde(rename = "organization_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
34    pub organization_id: Option<Option<String>>,
35    /// RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example.
36    #[serde(rename = "request_url")]
37    pub request_url: String,
38    /// ReturnTo contains the requested return_to URL.
39    #[serde(rename = "return_to", skip_serializing_if = "Option::is_none")]
40    pub return_to: Option<String>,
41    /// SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the flow has been completed. This is only set if the client has requested a session token exchange code, and if the flow is of type \"api\", and only on creating the flow.
42    #[serde(rename = "session_token_exchange_code", skip_serializing_if = "Option::is_none")]
43    pub session_token_exchange_code: Option<String>,
44    /// State represents the state of this request:  choose_method: ask the user to choose a method (e.g. registration with email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the registration challenge was passed.
45    #[serde(rename = "state", deserialize_with = "Option::deserialize")]
46    pub state: Option<serde_json::Value>,
47    /// TransientPayload is used to pass data from the registration to a webhook
48    #[serde(rename = "transient_payload", skip_serializing_if = "Option::is_none")]
49    pub transient_payload: Option<serde_json::Value>,
50    /// The flow type can either be `api` or `browser`.
51    #[serde(rename = "type")]
52    pub r#type: String,
53    #[serde(rename = "ui")]
54    pub ui: Box<models::UiContainer>,
55}
56
57impl RegistrationFlow {
58    pub fn new(expires_at: String, id: String, issued_at: String, request_url: String, state: Option<serde_json::Value>, r#type: String, ui: models::UiContainer) -> RegistrationFlow {
59        RegistrationFlow {
60            active: None,
61            expires_at,
62            id,
63            issued_at,
64            oauth2_login_challenge: None,
65            oauth2_login_request: None,
66            organization_id: None,
67            request_url,
68            return_to: None,
69            session_token_exchange_code: None,
70            state,
71            transient_payload: None,
72            r#type,
73            ui: Box::new(ui),
74        }
75    }
76}
77/// Active, if set, contains the registration method that is being used. It is initially not set. password CredentialsTypePassword oidc CredentialsTypeOIDC totp CredentialsTypeTOTP lookup_secret CredentialsTypeLookup webauthn CredentialsTypeWebAuthn code CredentialsTypeCodeAuth passkey CredentialsTypePasskey profile CredentialsTypeProfile saml CredentialsTypeSAML link_recovery CredentialsTypeRecoveryLink  CredentialsTypeRecoveryLink is a special credential type linked to the link strategy (recovery flow).  It is not used within the credentials object itself. code_recovery CredentialsTypeRecoveryCode
78#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
79pub enum ActiveEnum {
80    #[serde(rename = "password")]
81    Password,
82    #[serde(rename = "oidc")]
83    Oidc,
84    #[serde(rename = "totp")]
85    Totp,
86    #[serde(rename = "lookup_secret")]
87    LookupSecret,
88    #[serde(rename = "webauthn")]
89    Webauthn,
90    #[serde(rename = "code")]
91    Code,
92    #[serde(rename = "passkey")]
93    Passkey,
94    #[serde(rename = "profile")]
95    Profile,
96    #[serde(rename = "saml")]
97    Saml,
98    #[serde(rename = "link_recovery")]
99    LinkRecovery,
100    #[serde(rename = "code_recovery")]
101    CodeRecovery,
102}
103
104impl Default for ActiveEnum {
105    fn default() -> ActiveEnum {
106        Self::Password
107    }
108}
109