Skip to main content

ory_client/models/
normalized_project_revision.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.22.28
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 NormalizedProjectRevision {
16    /// The Account Experience's Custom Translations  Contains all Custom Translations for this project.
17    #[serde(rename = "account_experience_custom_translations", skip_serializing_if = "Option::is_none")]
18    pub account_experience_custom_translations: Option<Vec<models::RevisionAccountExperienceCustomTranslation>>,
19    /// Holds the default locale for the account experience.
20    #[serde(rename = "account_experience_default_locale", skip_serializing_if = "Option::is_none")]
21    pub account_experience_default_locale: Option<String>,
22    #[serde(rename = "account_experience_enabled_locales", skip_serializing_if = "Option::is_none")]
23    pub account_experience_enabled_locales: Option<Vec<String>>,
24    /// Holds the URL to the account experience's dark theme favicon (currently unused).
25    #[serde(rename = "account_experience_favicon_dark", skip_serializing_if = "Option::is_none")]
26    pub account_experience_favicon_dark: Option<String>,
27    /// Holds the URL to the account experience's favicon.
28    #[serde(rename = "account_experience_favicon_light", skip_serializing_if = "Option::is_none")]
29    pub account_experience_favicon_light: Option<String>,
30    /// Holds the URL to the account experience's language behavior.  Can be one of: `respect_accept_language`: Respect the `Accept-Language` header. `force_default`: Force the default language.
31    #[serde(rename = "account_experience_locale_behavior", skip_serializing_if = "Option::is_none")]
32    pub account_experience_locale_behavior: Option<String>,
33    /// Holds the URL to the account experience's dark theme logo (currently unused).
34    #[serde(rename = "account_experience_logo_dark", skip_serializing_if = "Option::is_none")]
35    pub account_experience_logo_dark: Option<String>,
36    /// Holds the URL to the account experience's logo.
37    #[serde(rename = "account_experience_logo_light", skip_serializing_if = "Option::is_none")]
38    pub account_experience_logo_light: Option<String>,
39    /// Holds the URL to the account experience's dark theme variables.
40    #[serde(rename = "account_experience_theme_variables_dark", skip_serializing_if = "Option::is_none")]
41    pub account_experience_theme_variables_dark: Option<String>,
42    /// Holds the URL to the account experience's light theme variables.
43    #[serde(rename = "account_experience_theme_variables_light", skip_serializing_if = "Option::is_none")]
44    pub account_experience_theme_variables_light: Option<String>,
45    /// The Project's Revision Creation Date
46    #[serde(rename = "created_at", skip_serializing_if = "Option::is_none")]
47    pub created_at: Option<String>,
48    /// Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`.
49    #[serde(rename = "disable_account_experience_welcome_screen", skip_serializing_if = "Option::is_none")]
50    pub disable_account_experience_welcome_screen: Option<bool>,
51    /// Whether the new account experience is enabled and reachable.
52    #[serde(rename = "enable_ax_v2", skip_serializing_if = "Option::is_none")]
53    pub enable_ax_v2: Option<bool>,
54    #[serde(rename = "hydra_oauth2_allowed_top_level_claims", skip_serializing_if = "Option::is_none")]
55    pub hydra_oauth2_allowed_top_level_claims: Option<Vec<String>>,
56    /// Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow.  Each OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full scope is automatically granted when performing the OAuth2 Client Credentials flow.  If disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter.  Setting this option to true is common if you need compatibility with MITREid.  This governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting.
57    #[serde(rename = "hydra_oauth2_client_credentials_default_grant_allowed_scope", skip_serializing_if = "Option::is_none")]
58    pub hydra_oauth2_client_credentials_default_grant_allowed_scope: Option<bool>,
59    /// Set to true if you want to exclude claim `nbf (not before)` part of access token.  This governs the \"oauth2.exclude_not_before_claim\" setting.
60    #[serde(rename = "hydra_oauth2_exclude_not_before_claim", skip_serializing_if = "Option::is_none")]
61    pub hydra_oauth2_exclude_not_before_claim: Option<bool>,
62    /// Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).  If set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration.  This governs the \"oauth2.grant.jwt.iat_optional\" setting.
63    #[serde(rename = "hydra_oauth2_grant_jwt_iat_optional", skip_serializing_if = "Option::is_none")]
64    pub hydra_oauth2_grant_jwt_iat_optional: Option<bool>,
65    /// Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).  If set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration.  This governs the \"oauth2.grant.jwt.jti_optional\" setting.
66    #[serde(rename = "hydra_oauth2_grant_jwt_jti_optional", skip_serializing_if = "Option::is_none")]
67    pub hydra_oauth2_grant_jwt_jti_optional: Option<bool>,
68    /// Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be.  This feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied.  Useful as a safety measure and recommended to keep below 720h.  This governs the \"oauth2.grant.jwt.max_ttl\" setting.
69    #[serde(rename = "hydra_oauth2_grant_jwt_max_ttl", skip_serializing_if = "Option::is_none")]
70    pub hydra_oauth2_grant_jwt_max_ttl: Option<String>,
71    /// Configures the OAuth2 Grant Refresh Token Rotation Grace Period  If set to `null` or `\"0s\"`, the graceful refresh token rotation is disabled.  This governs the \"oauth2.grant.refresh_token_rotation_grace_period\" setting.
72    #[serde(rename = "hydra_oauth2_grant_refresh_token_rotation_grace_period", skip_serializing_if = "Option::is_none")]
73    pub hydra_oauth2_grant_refresh_token_rotation_grace_period: Option<String>,
74    /// Set to false if you don't want to mirror custom claims under 'ext'.  This governs the \"oauth2.mirror_top_level_claims\" setting.
75    #[serde(rename = "hydra_oauth2_mirror_top_level_claims", skip_serializing_if = "Option::is_none")]
76    pub hydra_oauth2_mirror_top_level_claims: Option<bool>,
77    /// Configures whether PKCE should be enforced for all OAuth2 Clients.  This governs the \"oauth2.pkce.enforced\" setting.
78    #[serde(rename = "hydra_oauth2_pkce_enforced", skip_serializing_if = "Option::is_none")]
79    pub hydra_oauth2_pkce_enforced: Option<bool>,
80    /// Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients).  This governs the \"oauth2.pkce.enforced_for_public_clients\" setting.
81    #[serde(rename = "hydra_oauth2_pkce_enforced_for_public_clients", skip_serializing_if = "Option::is_none")]
82    pub hydra_oauth2_pkce_enforced_for_public_clients: Option<bool>,
83    /// Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims.  This governs the \"oauth2.refresh_token_hook\" setting.
84    #[serde(rename = "hydra_oauth2_refresh_token_hook", skip_serializing_if = "Option::is_none")]
85    pub hydra_oauth2_refresh_token_hook: Option<String>,
86    /// Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims.  This governs the \"oauth2.token_hook.url\" setting.
87    #[serde(rename = "hydra_oauth2_token_hook", skip_serializing_if = "Option::is_none")]
88    pub hydra_oauth2_token_hook: Option<String>,
89    #[serde(rename = "hydra_oidc_dynamic_client_registration_default_scope", skip_serializing_if = "Option::is_none")]
90    pub hydra_oidc_dynamic_client_registration_default_scope: Option<Vec<String>>,
91    /// Configures OpenID Connect Dynamic Client Registration.  This governs the \"oidc.dynamic_client_registration.enabled\" setting.
92    #[serde(rename = "hydra_oidc_dynamic_client_registration_enabled", skip_serializing_if = "Option::is_none")]
93    pub hydra_oidc_dynamic_client_registration_enabled: Option<bool>,
94    /// Configures OpenID Connect Discovery and overwrites the pairwise algorithm  This governs the \"oidc.subject_identifiers.pairwise_salt\" setting.
95    #[serde(rename = "hydra_oidc_subject_identifiers_pairwise_salt", skip_serializing_if = "Option::is_none")]
96    pub hydra_oidc_subject_identifiers_pairwise_salt: Option<String>,
97    #[serde(rename = "hydra_oidc_subject_identifiers_supported_types", skip_serializing_if = "Option::is_none")]
98    pub hydra_oidc_subject_identifiers_supported_types: Option<Vec<String>>,
99    #[serde(rename = "hydra_secrets_cookie", skip_serializing_if = "Option::is_none")]
100    pub hydra_secrets_cookie: Option<Vec<String>>,
101    #[serde(rename = "hydra_secrets_pagination", skip_serializing_if = "Option::is_none")]
102    pub hydra_secrets_pagination: Option<Vec<String>>,
103    #[serde(rename = "hydra_secrets_system", skip_serializing_if = "Option::is_none")]
104    pub hydra_secrets_system: Option<Vec<String>>,
105    /// Configures the Ory Hydra Cookie Same Site Legacy Workaround  This governs the \"serve.cookies.same_site_legacy_workaround\" setting.
106    #[serde(rename = "hydra_serve_cookies_same_site_legacy_workaround", skip_serializing_if = "Option::is_none")]
107    pub hydra_serve_cookies_same_site_legacy_workaround: Option<bool>,
108    /// Configures the Ory Hydra Cookie Same Site Mode  This governs the \"serve.cookies.same_site_mode\" setting.
109    #[serde(rename = "hydra_serve_cookies_same_site_mode", skip_serializing_if = "Option::is_none")]
110    pub hydra_serve_cookies_same_site_mode: Option<String>,
111    /// Defines access token type  This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt
112    #[serde(rename = "hydra_strategies_access_token", skip_serializing_if = "Option::is_none")]
113    pub hydra_strategies_access_token: Option<HydraStrategiesAccessTokenEnum>,
114    /// Define the claim to use as the scope in the access token.  This governs the \"strategies.jwt.scope_claim\" setting:  list: The scope claim is an array of strings named `scope`: `{ \"scope\": [\"read\", \"write\"] }` string: The scope claim is a space delimited list of strings named `scp`: `{ \"scp\": \"read write\" }` both: The scope claim is both a space delimited list and an array of strings named `scope` and `scp`: `{ \"scope\": [\"read\", \"write\"], \"scp\": \"read write\" }` list OAuth2JWTScopeClaimList string OAuth2JWTScopeClaimString both OAuth2JWTScopeClaimBoth
115    #[serde(rename = "hydra_strategies_jwt_scope_claim", skip_serializing_if = "Option::is_none")]
116    pub hydra_strategies_jwt_scope_claim: Option<HydraStrategiesJwtScopeClaimEnum>,
117    /// Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes  This governs the \"strategies.scope\" setting. exact Oauth2ScopeStrategyExact wildcard Oauth2ScopeStrategyWildcard
118    #[serde(rename = "hydra_strategies_scope", skip_serializing_if = "Option::is_none")]
119    pub hydra_strategies_scope: Option<HydraStrategiesScopeEnum>,
120    /// This governs the \"ttl.access_token\" setting.
121    #[serde(rename = "hydra_ttl_access_token", skip_serializing_if = "Option::is_none")]
122    pub hydra_ttl_access_token: Option<String>,
123    /// Configures how long refresh tokens are valid.  Set to -1 for refresh tokens to never expire. This is not recommended!  This governs the \"ttl.auth_code\" setting.
124    #[serde(rename = "hydra_ttl_auth_code", skip_serializing_if = "Option::is_none")]
125    pub hydra_ttl_auth_code: Option<String>,
126    /// This governs the \"ttl.id_token\" setting.
127    #[serde(rename = "hydra_ttl_id_token", skip_serializing_if = "Option::is_none")]
128    pub hydra_ttl_id_token: Option<String>,
129    /// Configures how long a user login and consent flow may take.  This governs the \"ttl.login_consent_request\" setting.
130    #[serde(rename = "hydra_ttl_login_consent_request", skip_serializing_if = "Option::is_none")]
131    pub hydra_ttl_login_consent_request: Option<String>,
132    /// Configures how long refresh tokens are valid.  Set to -1 for refresh tokens to never expire. This is not recommended!  This governs the \"ttl.refresh_token\" setting.
133    #[serde(rename = "hydra_ttl_refresh_token", skip_serializing_if = "Option::is_none")]
134    pub hydra_ttl_refresh_token: Option<String>,
135    /// Sets the OAuth2 Consent Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.consent\" setting.
136    #[serde(rename = "hydra_urls_consent", skip_serializing_if = "Option::is_none")]
137    pub hydra_urls_consent: Option<String>,
138    /// Sets the OAuth2 Error URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.error\" setting.
139    #[serde(rename = "hydra_urls_error", skip_serializing_if = "Option::is_none")]
140    pub hydra_urls_error: Option<String>,
141    /// Sets the OAuth2 Login Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.login\" setting.
142    #[serde(rename = "hydra_urls_login", skip_serializing_if = "Option::is_none")]
143    pub hydra_urls_login: Option<String>,
144    /// Sets the logout endpoint.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.logout\" setting.
145    #[serde(rename = "hydra_urls_logout", skip_serializing_if = "Option::is_none")]
146    pub hydra_urls_logout: Option<String>,
147    /// When an OAuth2-related user agent requests to log out, they will be redirected to this url afterwards per default.  Defaults to the Ory Account Experience in development and your application in production mode when a custom domain is connected.  This governs the \"urls.post_logout_redirect\" setting.
148    #[serde(rename = "hydra_urls_post_logout_redirect", skip_serializing_if = "Option::is_none")]
149    pub hydra_urls_post_logout_redirect: Option<String>,
150    /// Sets the OAuth2 Registration Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.registration\" setting.
151    #[serde(rename = "hydra_urls_registration", skip_serializing_if = "Option::is_none")]
152    pub hydra_urls_registration: Option<String>,
153    /// This value will be used as the issuer in access and ID tokens. It must be specified and using HTTPS protocol, unless the development mode is enabled.  On the Ory Network it will be very rare that you want to modify this value. If left empty, it will default to the correct value for the Ory Network.  This governs the \"urls.self.issuer\" setting.
154    #[serde(rename = "hydra_urls_self_issuer", skip_serializing_if = "Option::is_none")]
155    pub hydra_urls_self_issuer: Option<String>,
156    #[serde(rename = "hydra_webfinger_jwks_broadcast_keys", skip_serializing_if = "Option::is_none")]
157    pub hydra_webfinger_jwks_broadcast_keys: Option<Vec<String>>,
158    /// Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL.  This governs the \"webfinger.oidc.discovery.auth_url\" setting.
159    #[serde(rename = "hydra_webfinger_oidc_discovery_auth_url", skip_serializing_if = "Option::is_none")]
160    pub hydra_webfinger_oidc_discovery_auth_url: Option<String>,
161    /// Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint.  This governs the \"webfinger.oidc.discovery.client_registration_url\" setting.
162    #[serde(rename = "hydra_webfinger_oidc_discovery_client_registration_url", skip_serializing_if = "Option::is_none")]
163    pub hydra_webfinger_oidc_discovery_client_registration_url: Option<String>,
164    /// Configures OpenID Connect Discovery and overwrites the JWKS URL.  This governs the \"webfinger.oidc.discovery.jwks_url\" setting.
165    #[serde(rename = "hydra_webfinger_oidc_discovery_jwks_url", skip_serializing_if = "Option::is_none")]
166    pub hydra_webfinger_oidc_discovery_jwks_url: Option<String>,
167    #[serde(rename = "hydra_webfinger_oidc_discovery_supported_claims", skip_serializing_if = "Option::is_none")]
168    pub hydra_webfinger_oidc_discovery_supported_claims: Option<Vec<String>>,
169    #[serde(rename = "hydra_webfinger_oidc_discovery_supported_scope", skip_serializing_if = "Option::is_none")]
170    pub hydra_webfinger_oidc_discovery_supported_scope: Option<Vec<String>>,
171    /// Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL.  This governs the \"webfinger.oidc.discovery.token_url\" setting.
172    #[serde(rename = "hydra_webfinger_oidc_discovery_token_url", skip_serializing_if = "Option::is_none")]
173    pub hydra_webfinger_oidc_discovery_token_url: Option<String>,
174    /// Configures OpenID Connect Discovery and overwrites userinfo endpoint to be advertised at the OpenID Connect Discovery endpoint /.well-known/openid-configuration. Defaults to Ory Hydra's userinfo endpoint at /userinfo. Set this value if you want to handle this endpoint yourself.  This governs the \"webfinger.oidc.discovery.userinfo_url\" setting.
175    #[serde(rename = "hydra_webfinger_oidc_discovery_userinfo_url", skip_serializing_if = "Option::is_none")]
176    pub hydra_webfinger_oidc_discovery_userinfo_url: Option<String>,
177    /// The revision ID.
178    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
179    pub id: Option<String>,
180    /// The Revisions' Keto Namespace Configuration  The string is a URL pointing to an OPL file with the configuration.
181    #[serde(rename = "keto_namespace_configuration", skip_serializing_if = "Option::is_none")]
182    pub keto_namespace_configuration: Option<String>,
183    #[serde(rename = "keto_namespaces", skip_serializing_if = "Option::is_none")]
184    pub keto_namespaces: Option<Vec<models::KetoNamespace>>,
185    #[serde(rename = "keto_secrets_pagination", skip_serializing_if = "Option::is_none")]
186    pub keto_secrets_pagination: Option<Vec<String>>,
187    /// Configures the Ory Kratos Cookie SameSite Attribute  This governs the \"cookies.same_site\" setting.
188    #[serde(rename = "kratos_cookies_same_site", skip_serializing_if = "Option::is_none")]
189    pub kratos_cookies_same_site: Option<String>,
190    #[serde(rename = "kratos_courier_channels", skip_serializing_if = "Option::is_none")]
191    pub kratos_courier_channels: Option<Vec<models::NormalizedProjectRevisionCourierChannel>>,
192    /// The delivery strategy to use when sending emails  `smtp`: Use SMTP server `http`: Use the built in HTTP client to send the email to some remote service
193    #[serde(rename = "kratos_courier_delivery_strategy", skip_serializing_if = "Option::is_none")]
194    pub kratos_courier_delivery_strategy: Option<String>,
195    /// The location of the API key to use in the HTTP email sending service's authentication  `header`: Send the key value pair as a header `cookie`: Send the key value pair as a cookie This governs the \"courier.http.auth.config.in\" setting
196    #[serde(rename = "kratos_courier_http_request_config_auth_api_key_in", skip_serializing_if = "Option::is_none")]
197    pub kratos_courier_http_request_config_auth_api_key_in: Option<String>,
198    /// The name of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.name\" setting
199    #[serde(rename = "kratos_courier_http_request_config_auth_api_key_name", skip_serializing_if = "Option::is_none")]
200    pub kratos_courier_http_request_config_auth_api_key_name: Option<String>,
201    /// The value of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.value\" setting
202    #[serde(rename = "kratos_courier_http_request_config_auth_api_key_value", skip_serializing_if = "Option::is_none")]
203    pub kratos_courier_http_request_config_auth_api_key_value: Option<String>,
204    /// The password to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.password\" setting
205    #[serde(rename = "kratos_courier_http_request_config_auth_basic_auth_password", skip_serializing_if = "Option::is_none")]
206    pub kratos_courier_http_request_config_auth_basic_auth_password: Option<String>,
207    /// The user to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.user\" setting
208    #[serde(rename = "kratos_courier_http_request_config_auth_basic_auth_user", skip_serializing_if = "Option::is_none")]
209    pub kratos_courier_http_request_config_auth_basic_auth_user: Option<String>,
210    /// The authentication type to use while contacting the remote HTTP email sending service  `basic_auth`: Use Basic Authentication `api_key`: Use API Key Authentication in a header or cookie
211    #[serde(rename = "kratos_courier_http_request_config_auth_type", skip_serializing_if = "Option::is_none")]
212    pub kratos_courier_http_request_config_auth_type: Option<String>,
213    /// The Jsonnet template to generate the body to send to the remote HTTP email sending service  Should be valid Jsonnet and base64 encoded  This governs the \"courier.http.body\" setting
214    #[serde(rename = "kratos_courier_http_request_config_body", skip_serializing_if = "Option::is_none")]
215    pub kratos_courier_http_request_config_body: Option<String>,
216    /// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
217    #[serde(rename = "kratos_courier_http_request_config_headers", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
218    pub kratos_courier_http_request_config_headers: Option<Option<serde_json::Value>>,
219    /// The http METHOD to use when calling the remote HTTP email sending service
220    #[serde(rename = "kratos_courier_http_request_config_method", skip_serializing_if = "Option::is_none")]
221    pub kratos_courier_http_request_config_method: Option<String>,
222    /// The URL of the remote HTTP email sending service  This governs the \"courier.http.url\" setting
223    #[serde(rename = "kratos_courier_http_request_config_url", skip_serializing_if = "Option::is_none")]
224    pub kratos_courier_http_request_config_url: Option<String>,
225    /// Configures the Ory Kratos SMTP Connection URI  This governs the \"courier.smtp.connection_uri\" setting.
226    #[serde(rename = "kratos_courier_smtp_connection_uri", skip_serializing_if = "Option::is_none")]
227    pub kratos_courier_smtp_connection_uri: Option<String>,
228    /// Configures the Ory Kratos SMTP From Address  This governs the \"courier.smtp.from_address\" setting.
229    #[serde(rename = "kratos_courier_smtp_from_address", skip_serializing_if = "Option::is_none")]
230    pub kratos_courier_smtp_from_address: Option<String>,
231    /// Configures the Ory Kratos SMTP From Name  This governs the \"courier.smtp.from_name\" setting.
232    #[serde(rename = "kratos_courier_smtp_from_name", skip_serializing_if = "Option::is_none")]
233    pub kratos_courier_smtp_from_name: Option<String>,
234    /// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
235    #[serde(rename = "kratos_courier_smtp_headers", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
236    pub kratos_courier_smtp_headers: Option<Option<serde_json::Value>>,
237    /// Configures the local_name to use in SMTP connections  This governs the \"courier.smtp.local_name\" setting.
238    #[serde(rename = "kratos_courier_smtp_local_name", skip_serializing_if = "Option::is_none")]
239    pub kratos_courier_smtp_local_name: Option<String>,
240    /// Configures the Ory Kratos Valid Login via Code Email Body HTML Template  This governs the \"courier.smtp.templates.login_code.valid.email.body.html\" setting.
241    #[serde(rename = "kratos_courier_templates_login_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
242    pub kratos_courier_templates_login_code_valid_email_body_html: Option<String>,
243    /// Configures the Ory Kratos Valid Login via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.login_code.valid.email.body.plaintext\" setting.
244    #[serde(rename = "kratos_courier_templates_login_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
245    pub kratos_courier_templates_login_code_valid_email_body_plaintext: Option<String>,
246    /// Configures the Ory Kratos Valid Login via Code Email Subject Template  This governs the \"courier.smtp.templates.login_code.valid.email.subject\" setting.
247    #[serde(rename = "kratos_courier_templates_login_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
248    pub kratos_courier_templates_login_code_valid_email_subject: Option<String>,
249    /// Configures the Ory Kratos Valid Login via Code SMS plain text body  This governs the \"courier.smtp.templates.login_code.valid.sms.plaintext\" setting.
250    #[serde(rename = "kratos_courier_templates_login_code_valid_sms_body_plaintext", skip_serializing_if = "Option::is_none")]
251    pub kratos_courier_templates_login_code_valid_sms_body_plaintext: Option<String>,
252    /// Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.
253    #[serde(rename = "kratos_courier_templates_recovery_code_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
254    pub kratos_courier_templates_recovery_code_invalid_email_body_html: Option<String>,
255    /// Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.
256    #[serde(rename = "kratos_courier_templates_recovery_code_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
257    pub kratos_courier_templates_recovery_code_invalid_email_body_plaintext: Option<String>,
258    /// Configures the Ory Kratos Invalid Recovery via Code Email Subject Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.
259    #[serde(rename = "kratos_courier_templates_recovery_code_invalid_email_subject", skip_serializing_if = "Option::is_none")]
260    pub kratos_courier_templates_recovery_code_invalid_email_subject: Option<String>,
261    /// Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.body.html\" setting.
262    #[serde(rename = "kratos_courier_templates_recovery_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
263    pub kratos_courier_templates_recovery_code_valid_email_body_html: Option<String>,
264    /// Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.body.plaintext\" setting.
265    #[serde(rename = "kratos_courier_templates_recovery_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
266    pub kratos_courier_templates_recovery_code_valid_email_body_plaintext: Option<String>,
267    /// Configures the Ory Kratos Valid Recovery via Code Email Subject Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.subject\" setting.
268    #[serde(rename = "kratos_courier_templates_recovery_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
269    pub kratos_courier_templates_recovery_code_valid_email_subject: Option<String>,
270    /// Configures the Ory Kratos Invalid Recovery Email Body HTML Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
271    #[serde(rename = "kratos_courier_templates_recovery_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
272    pub kratos_courier_templates_recovery_invalid_email_body_html: Option<String>,
273    /// Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.
274    #[serde(rename = "kratos_courier_templates_recovery_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
275    pub kratos_courier_templates_recovery_invalid_email_body_plaintext: Option<String>,
276    /// Configures the Ory Kratos Invalid Recovery Email Subject Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
277    #[serde(rename = "kratos_courier_templates_recovery_invalid_email_subject", skip_serializing_if = "Option::is_none")]
278    pub kratos_courier_templates_recovery_invalid_email_subject: Option<String>,
279    /// Configures the Ory Kratos Valid Recovery Email Body HTML Template  This governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.
280    #[serde(rename = "kratos_courier_templates_recovery_valid_email_body_html", skip_serializing_if = "Option::is_none")]
281    pub kratos_courier_templates_recovery_valid_email_body_html: Option<String>,
282    /// Configures the Ory Kratos Valid Recovery Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.
283    #[serde(rename = "kratos_courier_templates_recovery_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
284    pub kratos_courier_templates_recovery_valid_email_body_plaintext: Option<String>,
285    /// Configures the Ory Kratos Valid Recovery Email Subject Template  This governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.
286    #[serde(rename = "kratos_courier_templates_recovery_valid_email_subject", skip_serializing_if = "Option::is_none")]
287    pub kratos_courier_templates_recovery_valid_email_subject: Option<String>,
288    /// Configures the Ory Kratos Valid Registration via Code Email Body HTML Template  This governs the \"courier.smtp.templates.registration_code.valid.email.body.html\" setting.
289    #[serde(rename = "kratos_courier_templates_registration_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
290    pub kratos_courier_templates_registration_code_valid_email_body_html: Option<String>,
291    /// Configures the Ory Kratos Valid Registration via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.registration_code.valid.email.body.plaintext\" setting.
292    #[serde(rename = "kratos_courier_templates_registration_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
293    pub kratos_courier_templates_registration_code_valid_email_body_plaintext: Option<String>,
294    /// Configures the Ory Kratos Valid Registration via Code Email Subject Template  This governs the \"courier.smtp.templates.registration_code.valid.email.subject\" setting.
295    #[serde(rename = "kratos_courier_templates_registration_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
296    pub kratos_courier_templates_registration_code_valid_email_subject: Option<String>,
297    /// Configures the Ory Kratos Valid Registration via Code Email Subject Template  This governs the \"courier.smtp.templates.registration_code.valid.sms.body.plaintext\" setting.
298    #[serde(rename = "kratos_courier_templates_registration_code_valid_sms_body_plaintext", skip_serializing_if = "Option::is_none")]
299    pub kratos_courier_templates_registration_code_valid_sms_body_plaintext: Option<String>,
300    /// Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.body.html\" setting.
301    #[serde(rename = "kratos_courier_templates_verification_code_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
302    pub kratos_courier_templates_verification_code_invalid_email_body_html: Option<String>,
303    /// Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.body.plaintext\" setting.
304    #[serde(rename = "kratos_courier_templates_verification_code_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
305    pub kratos_courier_templates_verification_code_invalid_email_body_plaintext: Option<String>,
306    /// Configures the Ory Kratos Invalid Verification via Code Email Subject Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.subject\" setting.
307    #[serde(rename = "kratos_courier_templates_verification_code_invalid_email_subject", skip_serializing_if = "Option::is_none")]
308    pub kratos_courier_templates_verification_code_invalid_email_subject: Option<String>,
309    /// Configures the Ory Kratos Valid Verification via Code Email Body HTML Template  This governs the \"courier.smtp.templates.verification_code.valid.email.body.html\" setting.
310    #[serde(rename = "kratos_courier_templates_verification_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
311    pub kratos_courier_templates_verification_code_valid_email_body_html: Option<String>,
312    /// Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification_code.valid.email.body.plaintext\" setting.
313    #[serde(rename = "kratos_courier_templates_verification_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
314    pub kratos_courier_templates_verification_code_valid_email_body_plaintext: Option<String>,
315    /// Configures the Ory Kratos Valid Verification via Code Email Subject Template  This governs the \"courier.smtp.templates.verification_code.valid.email.subject\" setting.
316    #[serde(rename = "kratos_courier_templates_verification_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
317    pub kratos_courier_templates_verification_code_valid_email_subject: Option<String>,
318    /// Configures the Ory Kratos Valid Verification via Code SMS Body Plaintext  This governs the \"courier.smtp.templates.verification_code.valid.sms.body.plaintext\" setting.
319    #[serde(rename = "kratos_courier_templates_verification_code_valid_sms_body_plaintext", skip_serializing_if = "Option::is_none")]
320    pub kratos_courier_templates_verification_code_valid_sms_body_plaintext: Option<String>,
321    /// Configures the Ory Kratos Invalid Verification Email Body HTML Template  This governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.
322    #[serde(rename = "kratos_courier_templates_verification_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
323    pub kratos_courier_templates_verification_invalid_email_body_html: Option<String>,
324    /// Configures the Ory Kratos Invalid Verification Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification.invalid.email.body.plaintext\" setting.
325    #[serde(rename = "kratos_courier_templates_verification_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
326    pub kratos_courier_templates_verification_invalid_email_body_plaintext: Option<String>,
327    /// Configures the Ory Kratos Invalid Verification Email Subject Template  This governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.
328    #[serde(rename = "kratos_courier_templates_verification_invalid_email_subject", skip_serializing_if = "Option::is_none")]
329    pub kratos_courier_templates_verification_invalid_email_subject: Option<String>,
330    /// Configures the Ory Kratos Valid Verification Email Body HTML Template  This governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.
331    #[serde(rename = "kratos_courier_templates_verification_valid_email_body_html", skip_serializing_if = "Option::is_none")]
332    pub kratos_courier_templates_verification_valid_email_body_html: Option<String>,
333    /// Configures the Ory Kratos Valid Verification Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification.valid.email.body.plaintext\" setting.
334    #[serde(rename = "kratos_courier_templates_verification_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
335    pub kratos_courier_templates_verification_valid_email_body_plaintext: Option<String>,
336    /// Configures the Ory Kratos Valid Verification Email Subject Template  This governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.
337    #[serde(rename = "kratos_courier_templates_verification_valid_email_subject", skip_serializing_if = "Option::is_none")]
338    pub kratos_courier_templates_verification_valid_email_subject: Option<String>,
339    /// Configures the Ory Kratos Session caching feature flag  This governs the \"feature_flags.cacheable_sessions\" setting.
340    #[serde(rename = "kratos_feature_flags_cacheable_sessions", skip_serializing_if = "Option::is_none")]
341    pub kratos_feature_flags_cacheable_sessions: Option<bool>,
342    /// Configures the Ory Kratos Session caching max-age feature flag  This governs the \"feature_flags.cacheable_sessions_max_age\" setting.
343    #[serde(rename = "kratos_feature_flags_cacheable_sessions_max_age", skip_serializing_if = "Option::is_none")]
344    pub kratos_feature_flags_cacheable_sessions_max_age: Option<String>,
345    /// This governs the \"feature_flags.choose_recovery_address\" setting.
346    #[serde(rename = "kratos_feature_flags_choose_recovery_address", skip_serializing_if = "Option::is_none")]
347    pub kratos_feature_flags_choose_recovery_address: Option<bool>,
348    /// Configures the Ory Kratos Faster Session Extend setting  If enabled allows faster session extension by skipping the session lookup and returning 201 instead of 200. Disabling this feature will be deprecated in the future.  This governs the \"feature_flags.faster_session_extend\" setting.
349    #[serde(rename = "kratos_feature_flags_faster_session_extend", skip_serializing_if = "Option::is_none")]
350    pub kratos_feature_flags_faster_session_extend: Option<bool>,
351    /// Always include show_verification_ui in continue_with  If true, restores the legacy behavior of always including `show_verification_ui` in the registration flow's `continue_with` when verification is enabled. If set to false, `show_verification_ui` is only set in `continue_with` if the `show_verification_ui` hook is used. This flag will be removed in the future.  This governs the \"feature_flags.legacy_continue_with_verification_ui\" setting.
352    #[serde(rename = "kratos_feature_flags_legacy_continue_with_verification_ui", skip_serializing_if = "Option::is_none")]
353    pub kratos_feature_flags_legacy_continue_with_verification_ui: Option<bool>,
354    /// Controls whether the UI nodes in an OIDC registration flow have group \"oidc\" in case required fields are not returned by the OIDC provider.  If set to true, the UI nodes will have group \"oidc\" and the flow will be considered successful if the user completes the flow. This is the legacy behavior.  This governs the \"feature_flags.legacy_oidc_registration_node_group\" setting.
355    #[serde(rename = "kratos_feature_flags_legacy_oidc_registration_node_group", skip_serializing_if = "Option::is_none")]
356    pub kratos_feature_flags_legacy_oidc_registration_node_group: Option<bool>,
357    /// Return a form error if the login identifier is not verified  If true, the login flow will return a form error if the login identifier is not verified, which restores legacy behavior. If this value is false, the `continue_with` array will contain a `show_verification_ui` hook instead.  This flag is deprecated and will be removed in the future.  This governs the \"feature_flags.legacy_require_verified_login_error\" setting.
358    #[serde(rename = "kratos_feature_flags_legacy_require_verified_login_error", skip_serializing_if = "Option::is_none")]
359    pub kratos_feature_flags_legacy_require_verified_login_error: Option<bool>,
360    /// Configures the group for the password method in the registration flow.  If true, it sets the password method group value to \"password\" if it is the only method available. This is the legacy behavior. If false is, it sets the password method group value to \"default\".
361    #[serde(rename = "kratos_feature_flags_password_profile_registration_node_group", skip_serializing_if = "Option::is_none")]
362    pub kratos_feature_flags_password_profile_registration_node_group: Option<bool>,
363    /// Configures the Ory Kratos Session use_continue_with_transitions flag  This governs the \"feature_flags.use_continue_with_transitions\" setting.
364    #[serde(rename = "kratos_feature_flags_use_continue_with_transitions", skip_serializing_if = "Option::is_none")]
365    pub kratos_feature_flags_use_continue_with_transitions: Option<bool>,
366    #[serde(rename = "kratos_identity_schemas", skip_serializing_if = "Option::is_none")]
367    pub kratos_identity_schemas: Option<Vec<models::NormalizedProjectRevisionIdentitySchema>>,
368    /// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
369    #[serde(rename = "kratos_oauth2_provider_headers", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
370    pub kratos_oauth2_provider_headers: Option<Option<serde_json::Value>>,
371    /// Kratos OAuth2 Provider Override Return To  Enabling this allows Kratos to set the return_to parameter automatically to the OAuth2 request URL on the login flow, allowing complex flows such as recovery to continue to the initial OAuth2 flow.
372    #[serde(rename = "kratos_oauth2_provider_override_return_to", skip_serializing_if = "Option::is_none")]
373    pub kratos_oauth2_provider_override_return_to: Option<bool>,
374    /// The Revisions' OAuth2 Provider Integration URL  This governs the \"oauth2_provider.url\" setting.
375    #[serde(rename = "kratos_oauth2_provider_url", skip_serializing_if = "Option::is_none")]
376    pub kratos_oauth2_provider_url: Option<String>,
377    /// Configures the default read consistency level for identity APIs  This governs the `preview.default_read_consistency_level` setting.  The read consistency level determines the consistency guarantee for reads:  strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old.  Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting:  `GET /admin/identities`  Defaults to \"strong\" for new and existing projects. This feature is in preview. Use with caution.
378    #[serde(rename = "kratos_preview_default_read_consistency_level", skip_serializing_if = "Option::is_none")]
379    pub kratos_preview_default_read_consistency_level: Option<String>,
380    #[serde(rename = "kratos_secrets_cipher", skip_serializing_if = "Option::is_none")]
381    pub kratos_secrets_cipher: Option<Vec<String>>,
382    #[serde(rename = "kratos_secrets_cookie", skip_serializing_if = "Option::is_none")]
383    pub kratos_secrets_cookie: Option<Vec<String>>,
384    #[serde(rename = "kratos_secrets_default", skip_serializing_if = "Option::is_none")]
385    pub kratos_secrets_default: Option<Vec<String>>,
386    #[serde(rename = "kratos_secrets_pagination", skip_serializing_if = "Option::is_none")]
387    pub kratos_secrets_pagination: Option<Vec<String>>,
388    /// Configures if account enumeration should be mitigated when using identifier first login.
389    #[serde(rename = "kratos_security_account_enumeration_mitigate", skip_serializing_if = "Option::is_none")]
390    pub kratos_security_account_enumeration_mitigate: Option<bool>,
391    #[serde(rename = "kratos_selfservice_allowed_return_urls", skip_serializing_if = "Option::is_none")]
392    pub kratos_selfservice_allowed_return_urls: Option<Vec<String>>,
393    /// Configures the Ory Kratos Default Return URL  This governs the \"selfservice.allowed_return_urls\" setting.
394    #[serde(rename = "kratos_selfservice_default_browser_return_url", skip_serializing_if = "Option::is_none")]
395    pub kratos_selfservice_default_browser_return_url: Option<String>,
396    /// Configures the Ory Kratos Error UI URL  This governs the \"selfservice.flows.error.ui_url\" setting.
397    #[serde(rename = "kratos_selfservice_flows_error_ui_url", skip_serializing_if = "Option::is_none")]
398    pub kratos_selfservice_flows_error_ui_url: Option<String>,
399    /// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.code.after.password.default_browser_return_url\" setting.
400    #[serde(rename = "kratos_selfservice_flows_login_after_code_default_browser_return_url", skip_serializing_if = "Option::is_none")]
401    pub kratos_selfservice_flows_login_after_code_default_browser_return_url: Option<String>,
402    /// Configures the Ory Kratos Login Default Return URL  This governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.
403    #[serde(rename = "kratos_selfservice_flows_login_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
404    pub kratos_selfservice_flows_login_after_default_browser_return_url: Option<String>,
405    /// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.lookup_secret.after.password.default_browser_return_url\" setting.
406    #[serde(rename = "kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url", skip_serializing_if = "Option::is_none")]
407    pub kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url: Option<String>,
408    /// Configures the Ory Kratos Login After OIDC Default Return URL  This governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.
409    #[serde(rename = "kratos_selfservice_flows_login_after_oidc_default_browser_return_url", skip_serializing_if = "Option::is_none")]
410    pub kratos_selfservice_flows_login_after_oidc_default_browser_return_url: Option<String>,
411    /// Configures the Ory Kratos Login After Passkey Default Return URL  This governs the \"selfservice.flows.login.after.passkey.default_browser_return_url\" setting.
412    #[serde(rename = "kratos_selfservice_flows_login_after_passkey_default_browser_return_url", skip_serializing_if = "Option::is_none")]
413    pub kratos_selfservice_flows_login_after_passkey_default_browser_return_url: Option<String>,
414    /// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.
415    #[serde(rename = "kratos_selfservice_flows_login_after_password_default_browser_return_url", skip_serializing_if = "Option::is_none")]
416    pub kratos_selfservice_flows_login_after_password_default_browser_return_url: Option<String>,
417    /// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.totp.after.password.default_browser_return_url\" setting.
418    #[serde(rename = "kratos_selfservice_flows_login_after_totp_default_browser_return_url", skip_serializing_if = "Option::is_none")]
419    pub kratos_selfservice_flows_login_after_totp_default_browser_return_url: Option<String>,
420    /// Configures the Ory Kratos Login After WebAuthn Default Return URL  This governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.
421    #[serde(rename = "kratos_selfservice_flows_login_after_webauthn_default_browser_return_url", skip_serializing_if = "Option::is_none")]
422    pub kratos_selfservice_flows_login_after_webauthn_default_browser_return_url: Option<String>,
423    /// Configures the Ory Kratos Login Lifespan  This governs the \"selfservice.flows.login.lifespan\" setting.
424    #[serde(rename = "kratos_selfservice_flows_login_lifespan", skip_serializing_if = "Option::is_none")]
425    pub kratos_selfservice_flows_login_lifespan: Option<String>,
426    /// Configures the Ory Kratos Login Flow Style  This governs the \"selfservice.flows.login.style\" setting. Possible values are \"unified\" and \"identifier_first\".
427    #[serde(rename = "kratos_selfservice_flows_login_style", skip_serializing_if = "Option::is_none")]
428    pub kratos_selfservice_flows_login_style: Option<String>,
429    /// Configures the Ory Kratos Login UI URL  This governs the \"selfservice.flows.login.ui_url\" setting.
430    #[serde(rename = "kratos_selfservice_flows_login_ui_url", skip_serializing_if = "Option::is_none")]
431    pub kratos_selfservice_flows_login_ui_url: Option<String>,
432    /// Configures the Ory Kratos Logout Default Return URL  This governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.
433    #[serde(rename = "kratos_selfservice_flows_logout_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
434    pub kratos_selfservice_flows_logout_after_default_browser_return_url: Option<String>,
435    /// Configures the Ory Kratos Recovery Default Return URL  This governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.
436    #[serde(rename = "kratos_selfservice_flows_recovery_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
437    pub kratos_selfservice_flows_recovery_after_default_browser_return_url: Option<String>,
438    /// Configures the Ory Kratos Recovery Enabled Setting  This governs the \"selfservice.flows.recovery.enabled\" setting.
439    #[serde(rename = "kratos_selfservice_flows_recovery_enabled", skip_serializing_if = "Option::is_none")]
440    pub kratos_selfservice_flows_recovery_enabled: Option<bool>,
441    /// Configures the Ory Kratos Recovery Lifespan  This governs the \"selfservice.flows.recovery.lifespan\" setting.
442    #[serde(rename = "kratos_selfservice_flows_recovery_lifespan", skip_serializing_if = "Option::is_none")]
443    pub kratos_selfservice_flows_recovery_lifespan: Option<String>,
444    /// Configures whether to notify unknown recipients of a Ory Kratos recovery flow  This governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.
445    #[serde(rename = "kratos_selfservice_flows_recovery_notify_unknown_recipients", skip_serializing_if = "Option::is_none")]
446    pub kratos_selfservice_flows_recovery_notify_unknown_recipients: Option<bool>,
447    /// Configures the Ory Kratos Recovery UI URL  This governs the \"selfservice.flows.recovery.ui_url\" setting.
448    #[serde(rename = "kratos_selfservice_flows_recovery_ui_url", skip_serializing_if = "Option::is_none")]
449    pub kratos_selfservice_flows_recovery_ui_url: Option<String>,
450    /// Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")  This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
451    #[serde(rename = "kratos_selfservice_flows_recovery_use", skip_serializing_if = "Option::is_none")]
452    pub kratos_selfservice_flows_recovery_use: Option<KratosSelfserviceFlowsRecoveryUseEnum>,
453    /// Configures the Ory Kratos Registration After Code Default Return URL  This governs the \"selfservice.flows.registration.after.code.default_browser_return_url\" setting.
454    #[serde(rename = "kratos_selfservice_flows_registration_after_code_default_browser_return_url", skip_serializing_if = "Option::is_none")]
455    pub kratos_selfservice_flows_registration_after_code_default_browser_return_url: Option<String>,
456    /// Configures the Ory Kratos Registration Default Return URL  This governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.
457    #[serde(rename = "kratos_selfservice_flows_registration_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
458    pub kratos_selfservice_flows_registration_after_default_browser_return_url: Option<String>,
459    /// Configures the Ory Kratos Registration After OIDC Default Return URL  This governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.
460    #[serde(rename = "kratos_selfservice_flows_registration_after_oidc_default_browser_return_url", skip_serializing_if = "Option::is_none")]
461    pub kratos_selfservice_flows_registration_after_oidc_default_browser_return_url: Option<String>,
462    /// Configures the Ory Kratos Registration After Passkey Default Return URL  This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
463    #[serde(rename = "kratos_selfservice_flows_registration_after_passkey_default_browser_return_url", skip_serializing_if = "Option::is_none")]
464    pub kratos_selfservice_flows_registration_after_passkey_default_browser_return_url: Option<String>,
465    /// Configures the Ory Kratos Registration After Password Default Return URL  This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
466    #[serde(rename = "kratos_selfservice_flows_registration_after_password_default_browser_return_url", skip_serializing_if = "Option::is_none")]
467    pub kratos_selfservice_flows_registration_after_password_default_browser_return_url: Option<String>,
468    /// Configures the Ory Kratos Registration After Webauthn Default Return URL  This governs the \"selfservice.flows.registration.after.webauthn.default_browser_return_url\" setting.
469    #[serde(rename = "kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url", skip_serializing_if = "Option::is_none")]
470    pub kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url: Option<String>,
471    /// Disable two-step registration  Two-step registration is a significantly improved sign up flow and recommended when using more than one sign up methods. To revert to one-step registration, set this to `true`.  This governs the \"selfservice.flows.registration.enable_legacy_one_step\" setting.
472    #[serde(rename = "kratos_selfservice_flows_registration_enable_legacy_one_step", skip_serializing_if = "Option::is_none")]
473    pub kratos_selfservice_flows_registration_enable_legacy_one_step: Option<bool>,
474    /// Configures the Whether Ory Kratos Registration is Enabled  This governs the \"selfservice.flows.registration.enabled\" setting.0
475    #[serde(rename = "kratos_selfservice_flows_registration_enabled", skip_serializing_if = "Option::is_none")]
476    pub kratos_selfservice_flows_registration_enabled: Option<bool>,
477    /// Configures the Ory Kratos Registration Lifespan  This governs the \"selfservice.flows.registration.lifespan\" setting.
478    #[serde(rename = "kratos_selfservice_flows_registration_lifespan", skip_serializing_if = "Option::is_none")]
479    pub kratos_selfservice_flows_registration_lifespan: Option<String>,
480    /// Configures the Ory Kratos Registration Login Hints  Shows helpful information when a user tries to sign up with a duplicate account.  This governs the \"selfservice.flows.registration.login_hints\" setting.
481    #[serde(rename = "kratos_selfservice_flows_registration_login_hints", skip_serializing_if = "Option::is_none")]
482    pub kratos_selfservice_flows_registration_login_hints: Option<bool>,
483    /// Configures the Ory Kratos Registration UI URL  This governs the \"selfservice.flows.registration.ui_url\" setting.
484    #[serde(rename = "kratos_selfservice_flows_registration_ui_url", skip_serializing_if = "Option::is_none")]
485    pub kratos_selfservice_flows_registration_ui_url: Option<String>,
486    /// Configures the Ory Kratos Settings Default Return URL  This governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.
487    #[serde(rename = "kratos_selfservice_flows_settings_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
488    pub kratos_selfservice_flows_settings_after_default_browser_return_url: Option<String>,
489    /// Configures the Ory Kratos Settings Default Return URL After Updating Lookup Secrets  This governs the \"selfservice.flows.settings.after.lookup_secret.default_browser_return_url\" setting.
490    #[serde(rename = "kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url", skip_serializing_if = "Option::is_none")]
491    pub kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url: Option<String>,
492    /// Configures the Ory Kratos Settings Default Return URL After Updating Social Sign In  This governs the \"selfservice.flows.settings.after.oidc.default_browser_return_url\" setting.
493    #[serde(rename = "kratos_selfservice_flows_settings_after_oidc_default_browser_return_url", skip_serializing_if = "Option::is_none")]
494    pub kratos_selfservice_flows_settings_after_oidc_default_browser_return_url: Option<String>,
495    /// Configures the Ory Kratos Settings Default Return URL After Updating Passkey  This governs the \"selfservice.flows.settings.after.passkey.default_browser_return_url\" setting.
496    #[serde(rename = "kratos_selfservice_flows_settings_after_passkey_default_browser_return_url", skip_serializing_if = "Option::is_none")]
497    pub kratos_selfservice_flows_settings_after_passkey_default_browser_return_url: Option<String>,
498    /// Configures the Ory Kratos Settings Default Return URL After Updating Passwords  This governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.
499    #[serde(rename = "kratos_selfservice_flows_settings_after_password_default_browser_return_url", skip_serializing_if = "Option::is_none")]
500    pub kratos_selfservice_flows_settings_after_password_default_browser_return_url: Option<String>,
501    /// Configures the Ory Kratos Settings Default Return URL After Updating Profiles  This governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.
502    #[serde(rename = "kratos_selfservice_flows_settings_after_profile_default_browser_return_url", skip_serializing_if = "Option::is_none")]
503    pub kratos_selfservice_flows_settings_after_profile_default_browser_return_url: Option<String>,
504    /// Configures the Ory Kratos Settings Default Return URL After Updating TOTP  This governs the \"selfservice.flows.settings.after.totp.default_browser_return_url\" setting.
505    #[serde(rename = "kratos_selfservice_flows_settings_after_totp_default_browser_return_url", skip_serializing_if = "Option::is_none")]
506    pub kratos_selfservice_flows_settings_after_totp_default_browser_return_url: Option<String>,
507    /// Configures the Ory Kratos Settings Default Return URL After Updating WebAuthn  This governs the \"selfservice.flows.settings.after.webauthn.default_browser_return_url\" setting.
508    #[serde(rename = "kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url", skip_serializing_if = "Option::is_none")]
509    pub kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url: Option<String>,
510    /// Configures the Ory Kratos Settings Lifespan  This governs the \"selfservice.flows.settings.lifespan\" setting.
511    #[serde(rename = "kratos_selfservice_flows_settings_lifespan", skip_serializing_if = "Option::is_none")]
512    pub kratos_selfservice_flows_settings_lifespan: Option<String>,
513    /// Configures the Ory Kratos Settings Privileged Session Max Age  This governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.
514    #[serde(rename = "kratos_selfservice_flows_settings_privileged_session_max_age", skip_serializing_if = "Option::is_none")]
515    pub kratos_selfservice_flows_settings_privileged_session_max_age: Option<String>,
516    /// Configures the Ory Kratos Settings Required AAL  This governs the \"selfservice.flows.settings.required_aal\" setting.
517    #[serde(rename = "kratos_selfservice_flows_settings_required_aal", skip_serializing_if = "Option::is_none")]
518    pub kratos_selfservice_flows_settings_required_aal: Option<String>,
519    /// Configures the Ory Kratos Settings UI URL  This governs the \"selfservice.flows.settings.ui_url\" setting.
520    #[serde(rename = "kratos_selfservice_flows_settings_ui_url", skip_serializing_if = "Option::is_none")]
521    pub kratos_selfservice_flows_settings_ui_url: Option<String>,
522    /// Configures the Ory Kratos Verification Default Return URL  This governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.
523    #[serde(rename = "kratos_selfservice_flows_verification_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
524    pub kratos_selfservice_flows_verification_after_default_browser_return_url: Option<String>,
525    /// Configures the Ory Kratos Verification Enabled Setting  This governs the \"selfservice.flows.verification.enabled\" setting.
526    #[serde(rename = "kratos_selfservice_flows_verification_enabled", skip_serializing_if = "Option::is_none")]
527    pub kratos_selfservice_flows_verification_enabled: Option<bool>,
528    /// Configures the Ory Kratos Verification Lifespan  This governs the \"selfservice.flows.verification.lifespan\" setting.
529    #[serde(rename = "kratos_selfservice_flows_verification_lifespan", skip_serializing_if = "Option::is_none")]
530    pub kratos_selfservice_flows_verification_lifespan: Option<String>,
531    /// Configures whether to notify unknown recipients of a Ory Kratos verification flow  This governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.
532    #[serde(rename = "kratos_selfservice_flows_verification_notify_unknown_recipients", skip_serializing_if = "Option::is_none")]
533    pub kratos_selfservice_flows_verification_notify_unknown_recipients: Option<bool>,
534    /// Configures the Ory Kratos Verification UI URL  This governs the \"selfservice.flows.verification.ui_url\" setting.
535    #[serde(rename = "kratos_selfservice_flows_verification_ui_url", skip_serializing_if = "Option::is_none")]
536    pub kratos_selfservice_flows_verification_ui_url: Option<String>,
537    /// Configures the Ory Kratos Strategy to use for Verification  This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
538    #[serde(rename = "kratos_selfservice_flows_verification_use", skip_serializing_if = "Option::is_none")]
539    pub kratos_selfservice_flows_verification_use: Option<KratosSelfserviceFlowsVerificationUseEnum>,
540    #[serde(rename = "kratos_selfservice_methods_captcha_config_allowed_domains", skip_serializing_if = "Option::is_none")]
541    pub kratos_selfservice_methods_captcha_config_allowed_domains: Option<Vec<String>>,
542    /// Configures whether to use BYO or managed widget  Reach out to your account manager to enable this feature.
543    #[serde(rename = "kratos_selfservice_methods_captcha_config_byo", skip_serializing_if = "Option::is_none")]
544    pub kratos_selfservice_methods_captcha_config_byo: Option<bool>,
545    /// Configures the Cloudflare Turnstile site secret for Ory BYO CAPTCHA protection  The site secret is private and will be never be shared with the client. This key is write only and the value will not be returned in response to a read request.  Reach out to your account manager to enable this feature.
546    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_byo_secret", skip_serializing_if = "Option::is_none")]
547    pub kratos_selfservice_methods_captcha_config_cf_turnstile_byo_secret: Option<String>,
548    /// Configures the Cloudflare Turnstile site key for Ory BYO CAPTCHA protection  The site key is public and will be shared with the client.  Reach out to your account manager to enable this feature.
549    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_byo_sitekey", skip_serializing_if = "Option::is_none")]
550    pub kratos_selfservice_methods_captcha_config_cf_turnstile_byo_sitekey: Option<String>,
551    /// Configures the Cloudflare Turnstile site secret for managed CAPTCHA protection  The site secret is private and will be never be shared with the client. This key is write only and the value will not be returned in response to a read request.  Reach out to your account manager to enable this feature.
552    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_secret", skip_serializing_if = "Option::is_none")]
553    pub kratos_selfservice_methods_captcha_config_cf_turnstile_secret: Option<String>,
554    /// Configures the Cloudflare Turnstile site key for managed CAPTCHA protection  The site key is public and will be shared with the client.  Reach out to your account manager to enable this feature.
555    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey", skip_serializing_if = "Option::is_none")]
556    pub kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey: Option<String>,
557    /// Configures the Ory Kratos Self-Service Methods' Captcha Enabled Setting  Reach out to your account manager to enable this feature.
558    #[serde(rename = "kratos_selfservice_methods_captcha_config_legacy_inject_node", skip_serializing_if = "Option::is_none")]
559    pub kratos_selfservice_methods_captcha_config_legacy_inject_node: Option<bool>,
560    /// Configures the Ory Kratos Self-Service Methods' Captcha Enabled Setting  Reach out to your account manager to enable this feature.
561    #[serde(rename = "kratos_selfservice_methods_captcha_enabled", skip_serializing_if = "Option::is_none")]
562    pub kratos_selfservice_methods_captcha_enabled: Option<bool>,
563    /// Configures the Ory Kratos Code Method's lifespan  This governs the \"selfservice.methods.code.config.lifespan\" setting.
564    #[serde(rename = "kratos_selfservice_methods_code_config_lifespan", skip_serializing_if = "Option::is_none")]
565    pub kratos_selfservice_methods_code_config_lifespan: Option<String>,
566    #[serde(rename = "kratos_selfservice_methods_code_config_max_submissions", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
567    pub kratos_selfservice_methods_code_config_max_submissions: Option<Option<i32>>,
568    /// Enables a fallback method required in certain legacy use cases.  This governs the \"selfservice.methods.code.config.missing_credential_fallback_enabled\" setting.
569    #[serde(rename = "kratos_selfservice_methods_code_config_missing_credential_fallback_enabled", skip_serializing_if = "Option::is_none")]
570    pub kratos_selfservice_methods_code_config_missing_credential_fallback_enabled: Option<bool>,
571    /// Configures whether Ory Kratos Code Method is enabled  This governs the \"selfservice.methods.code.enabled\" setting.
572    #[serde(rename = "kratos_selfservice_methods_code_enabled", skip_serializing_if = "Option::is_none")]
573    pub kratos_selfservice_methods_code_enabled: Option<bool>,
574    /// Configures whether the code method can be used to fulfil MFA flows  This governs the \"selfservice.methods.code.mfa_enabled\" setting.
575    #[serde(rename = "kratos_selfservice_methods_code_mfa_enabled", skip_serializing_if = "Option::is_none")]
576    pub kratos_selfservice_methods_code_mfa_enabled: Option<bool>,
577    /// Configures whether Ory Kratos Passwordless should use the Code Method  This governs the \"selfservice.methods.code.passwordless_enabled\" setting.
578    #[serde(rename = "kratos_selfservice_methods_code_passwordless_enabled", skip_serializing_if = "Option::is_none")]
579    pub kratos_selfservice_methods_code_passwordless_enabled: Option<bool>,
580    /// This setting allows the code method to always login a user with code if they have registered with another authentication method such as password or social sign in.  This governs the \"selfservice.methods.code.passwordless_login_fallback_enabled\" setting.
581    #[serde(rename = "kratos_selfservice_methods_code_passwordless_login_fallback_enabled", skip_serializing_if = "Option::is_none")]
582    pub kratos_selfservice_methods_code_passwordless_login_fallback_enabled: Option<bool>,
583    /// Configures the Base URL which Recovery, Verification, and Login Links Point to  It is recommended to leave this value empty. It will be appropriately configured to the best matching domain (e.g. when using custom domains) automatically.  This governs the \"selfservice.methods.link.config.base_url\" setting.
584    #[serde(rename = "kratos_selfservice_methods_link_config_base_url", skip_serializing_if = "Option::is_none")]
585    pub kratos_selfservice_methods_link_config_base_url: Option<String>,
586    /// Configures the Ory Kratos Link Method's lifespan  This governs the \"selfservice.methods.link.config.lifespan\" setting.
587    #[serde(rename = "kratos_selfservice_methods_link_config_lifespan", skip_serializing_if = "Option::is_none")]
588    pub kratos_selfservice_methods_link_config_lifespan: Option<String>,
589    /// Configures whether Ory Kratos Link Method is enabled  This governs the \"selfservice.methods.link.enabled\" setting.
590    #[serde(rename = "kratos_selfservice_methods_link_enabled", skip_serializing_if = "Option::is_none")]
591    pub kratos_selfservice_methods_link_enabled: Option<bool>,
592    /// Configures whether Ory Kratos TOTP Lookup Secret is enabled  This governs the \"selfservice.methods.lookup_secret.enabled\" setting.
593    #[serde(rename = "kratos_selfservice_methods_lookup_secret_enabled", skip_serializing_if = "Option::is_none")]
594    pub kratos_selfservice_methods_lookup_secret_enabled: Option<bool>,
595    /// Configures the Ory Kratos Third Party / OpenID Connect base redirect URI  This governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.
596    #[serde(rename = "kratos_selfservice_methods_oidc_config_base_redirect_uri", skip_serializing_if = "Option::is_none")]
597    pub kratos_selfservice_methods_oidc_config_base_redirect_uri: Option<String>,
598    #[serde(rename = "kratos_selfservice_methods_oidc_config_providers", skip_serializing_if = "Option::is_none")]
599    pub kratos_selfservice_methods_oidc_config_providers: Option<Vec<models::NormalizedProjectRevisionThirdPartyProvider>>,
600    /// Configures whether Ory Kratos allows auto-linking of OIDC credentials without a subject  This governs the \"selfservice.methods.oidc.enable_auto_link_policy\" setting.
601    #[serde(rename = "kratos_selfservice_methods_oidc_enable_auto_link_policy", skip_serializing_if = "Option::is_none")]
602    pub kratos_selfservice_methods_oidc_enable_auto_link_policy: Option<bool>,
603    /// Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled  This governs the \"selfservice.methods.oidc.enabled\" setting.
604    #[serde(rename = "kratos_selfservice_methods_oidc_enabled", skip_serializing_if = "Option::is_none")]
605    pub kratos_selfservice_methods_oidc_enabled: Option<bool>,
606    /// Configures the Ory Kratos Passkey RP Display Name  This governs the \"selfservice.methods.passkey.config.rp.display_name\" setting.
607    #[serde(rename = "kratos_selfservice_methods_passkey_config_rp_display_name", skip_serializing_if = "Option::is_none")]
608    pub kratos_selfservice_methods_passkey_config_rp_display_name: Option<String>,
609    /// Configures the Ory Kratos Passkey RP ID  This governs the \"selfservice.methods.passkey.config.rp.id\" setting.
610    #[serde(rename = "kratos_selfservice_methods_passkey_config_rp_id", skip_serializing_if = "Option::is_none")]
611    pub kratos_selfservice_methods_passkey_config_rp_id: Option<String>,
612    #[serde(rename = "kratos_selfservice_methods_passkey_config_rp_origins", skip_serializing_if = "Option::is_none")]
613    pub kratos_selfservice_methods_passkey_config_rp_origins: Option<Vec<String>>,
614    /// Configures whether Ory Kratos Passkey authentication is enabled  This governs the \"selfservice.methods.passkey.enabled\" setting.
615    #[serde(rename = "kratos_selfservice_methods_passkey_enabled", skip_serializing_if = "Option::is_none")]
616    pub kratos_selfservice_methods_passkey_enabled: Option<bool>,
617    /// Configures whether Ory Kratos Password HIBP Checks is enabled  This governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.
618    #[serde(rename = "kratos_selfservice_methods_password_config_haveibeenpwned_enabled", skip_serializing_if = "Option::is_none")]
619    pub kratos_selfservice_methods_password_config_haveibeenpwned_enabled: Option<bool>,
620    /// Configures whether Ory Kratos Password should disable the similarity policy.  This governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.
621    #[serde(rename = "kratos_selfservice_methods_password_config_identifier_similarity_check_enabled", skip_serializing_if = "Option::is_none")]
622    pub kratos_selfservice_methods_password_config_identifier_similarity_check_enabled: Option<bool>,
623    /// Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors  This governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.
624    #[serde(rename = "kratos_selfservice_methods_password_config_ignore_network_errors", skip_serializing_if = "Option::is_none")]
625    pub kratos_selfservice_methods_password_config_ignore_network_errors: Option<bool>,
626    /// Configures Ory Kratos Password Max Breaches Detection  This governs the \"selfservice.methods.password.config.max_breaches\" setting.
627    #[serde(rename = "kratos_selfservice_methods_password_config_max_breaches", skip_serializing_if = "Option::is_none")]
628    pub kratos_selfservice_methods_password_config_max_breaches: Option<i64>,
629    /// Configures the minimum length of passwords.  This governs the \"selfservice.methods.password.config.min_password_length\" setting.
630    #[serde(rename = "kratos_selfservice_methods_password_config_min_password_length", skip_serializing_if = "Option::is_none")]
631    pub kratos_selfservice_methods_password_config_min_password_length: Option<i64>,
632    /// Configures whether Ory Kratos Password Method is enabled  This governs the \"selfservice.methods.password.enabled\" setting.
633    #[serde(rename = "kratos_selfservice_methods_password_enabled", skip_serializing_if = "Option::is_none")]
634    pub kratos_selfservice_methods_password_enabled: Option<bool>,
635    /// Configures whether Ory Kratos Profile Method is enabled  This governs the \"selfservice.methods.profile.enabled\" setting.
636    #[serde(rename = "kratos_selfservice_methods_profile_enabled", skip_serializing_if = "Option::is_none")]
637    pub kratos_selfservice_methods_profile_enabled: Option<bool>,
638    #[serde(rename = "kratos_selfservice_methods_saml_config_providers", skip_serializing_if = "Option::is_none")]
639    pub kratos_selfservice_methods_saml_config_providers: Option<Vec<models::NormalizedProjectRevisionSamlProvider>>,
640    /// Configures whether Ory Kratos SAML Login is enabled  This governs the \"selfservice.methods.saml.enabled\" setting.
641    #[serde(rename = "kratos_selfservice_methods_saml_enabled", skip_serializing_if = "Option::is_none")]
642    pub kratos_selfservice_methods_saml_enabled: Option<bool>,
643    /// Configures Ory Kratos TOTP Issuer  This governs the \"selfservice.methods.totp.config.issuer\" setting.
644    #[serde(rename = "kratos_selfservice_methods_totp_config_issuer", skip_serializing_if = "Option::is_none")]
645    pub kratos_selfservice_methods_totp_config_issuer: Option<String>,
646    /// Configures whether Ory Kratos TOTP Method is enabled  This governs the \"selfservice.methods.totp.enabled\" setting.
647    #[serde(rename = "kratos_selfservice_methods_totp_enabled", skip_serializing_if = "Option::is_none")]
648    pub kratos_selfservice_methods_totp_enabled: Option<bool>,
649    /// Configures whether Ory Kratos Webauthn is used for passwordless flows  This governs the \"selfservice.methods.webauthn.config.passwordless\" setting.
650    #[serde(rename = "kratos_selfservice_methods_webauthn_config_passwordless", skip_serializing_if = "Option::is_none")]
651    pub kratos_selfservice_methods_webauthn_config_passwordless: Option<bool>,
652    /// Configures the Ory Kratos Webauthn RP Display Name  This governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.
653    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_display_name", skip_serializing_if = "Option::is_none")]
654    pub kratos_selfservice_methods_webauthn_config_rp_display_name: Option<String>,
655    /// Configures the Ory Kratos Webauthn RP Icon  This governs the \"selfservice.methods.webauthn.config.rp.icon\" setting. Deprecated: This value will be ignored due to security considerations.
656    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_icon", skip_serializing_if = "Option::is_none")]
657    pub kratos_selfservice_methods_webauthn_config_rp_icon: Option<String>,
658    /// Configures the Ory Kratos Webauthn RP ID  This governs the \"selfservice.methods.webauthn.config.rp.id\" setting.
659    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_id", skip_serializing_if = "Option::is_none")]
660    pub kratos_selfservice_methods_webauthn_config_rp_id: Option<String>,
661    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_origins", skip_serializing_if = "Option::is_none")]
662    pub kratos_selfservice_methods_webauthn_config_rp_origins: Option<Vec<String>>,
663    /// Configures whether Ory Kratos Webauthn is enabled  This governs the \"selfservice.methods.webauthn.enabled\" setting.
664    #[serde(rename = "kratos_selfservice_methods_webauthn_enabled", skip_serializing_if = "Option::is_none")]
665    pub kratos_selfservice_methods_webauthn_enabled: Option<bool>,
666    /// Configures the Ory Kratos Session Cookie Persistent Attribute  This governs the \"session.cookie.persistent\" setting.
667    #[serde(rename = "kratos_session_cookie_persistent", skip_serializing_if = "Option::is_none")]
668    pub kratos_session_cookie_persistent: Option<bool>,
669    /// Configures the Ory Kratos Session Cookie SameSite Attribute  This governs the \"session.cookie.same_site\" setting.
670    #[serde(rename = "kratos_session_cookie_same_site", skip_serializing_if = "Option::is_none")]
671    pub kratos_session_cookie_same_site: Option<String>,
672    /// Configures the Ory Kratos Session Lifespan  This governs the \"session.lifespan\" setting.
673    #[serde(rename = "kratos_session_lifespan", skip_serializing_if = "Option::is_none")]
674    pub kratos_session_lifespan: Option<String>,
675    /// Configures the Ory Kratos Session Whoami AAL requirement  This governs the \"session.whoami.required_aal\" setting.
676    #[serde(rename = "kratos_session_whoami_required_aal", skip_serializing_if = "Option::is_none")]
677    pub kratos_session_whoami_required_aal: Option<String>,
678    #[serde(rename = "kratos_session_whoami_tokenizer_templates", skip_serializing_if = "Option::is_none")]
679    pub kratos_session_whoami_tokenizer_templates: Option<Vec<models::NormalizedProjectRevisionTokenizerTemplate>>,
680    /// The project's name.
681    #[serde(rename = "name")]
682    pub name: String,
683    #[serde(rename = "organizations", skip_serializing_if = "Option::is_none")]
684    pub organizations: Option<Vec<models::Organization>>,
685    /// The Revision's Project ID
686    #[serde(rename = "project_id", skip_serializing_if = "Option::is_none")]
687    pub project_id: Option<String>,
688    #[serde(rename = "project_revision_hooks", skip_serializing_if = "Option::is_none")]
689    pub project_revision_hooks: Option<Vec<models::NormalizedProjectRevisionHook>>,
690    #[serde(rename = "scim_clients", skip_serializing_if = "Option::is_none")]
691    pub scim_clients: Option<Vec<models::NormalizedProjectRevisionScimClient>>,
692    #[serde(rename = "serve_admin_cors_allowed_origins", skip_serializing_if = "Option::is_none")]
693    pub serve_admin_cors_allowed_origins: Option<Vec<String>>,
694    /// Enable CORS headers on all admin APIs  This governs the \"serve.admin.cors.enabled\" setting.
695    #[serde(rename = "serve_admin_cors_enabled", skip_serializing_if = "Option::is_none")]
696    pub serve_admin_cors_enabled: Option<bool>,
697    #[serde(rename = "serve_public_cors_allowed_origins", skip_serializing_if = "Option::is_none")]
698    pub serve_public_cors_allowed_origins: Option<Vec<String>>,
699    /// Enable CORS headers on all public APIs  This governs the \"serve.public.cors.enabled\" setting.
700    #[serde(rename = "serve_public_cors_enabled", skip_serializing_if = "Option::is_none")]
701    pub serve_public_cors_enabled: Option<bool>,
702    /// Whether the project should employ strict security measures. Setting this to true is recommended for going into production.
703    #[serde(rename = "strict_security", skip_serializing_if = "Option::is_none")]
704    pub strict_security: Option<bool>,
705    /// Last Time Project's Revision was Updated
706    #[serde(rename = "updated_at", skip_serializing_if = "Option::is_none")]
707    pub updated_at: Option<String>,
708}
709
710impl NormalizedProjectRevision {
711    pub fn new(name: String) -> NormalizedProjectRevision {
712        NormalizedProjectRevision {
713            account_experience_custom_translations: None,
714            account_experience_default_locale: None,
715            account_experience_enabled_locales: None,
716            account_experience_favicon_dark: None,
717            account_experience_favicon_light: None,
718            account_experience_locale_behavior: None,
719            account_experience_logo_dark: None,
720            account_experience_logo_light: None,
721            account_experience_theme_variables_dark: None,
722            account_experience_theme_variables_light: None,
723            created_at: None,
724            disable_account_experience_welcome_screen: None,
725            enable_ax_v2: None,
726            hydra_oauth2_allowed_top_level_claims: None,
727            hydra_oauth2_client_credentials_default_grant_allowed_scope: None,
728            hydra_oauth2_exclude_not_before_claim: None,
729            hydra_oauth2_grant_jwt_iat_optional: None,
730            hydra_oauth2_grant_jwt_jti_optional: None,
731            hydra_oauth2_grant_jwt_max_ttl: None,
732            hydra_oauth2_grant_refresh_token_rotation_grace_period: None,
733            hydra_oauth2_mirror_top_level_claims: None,
734            hydra_oauth2_pkce_enforced: None,
735            hydra_oauth2_pkce_enforced_for_public_clients: None,
736            hydra_oauth2_refresh_token_hook: None,
737            hydra_oauth2_token_hook: None,
738            hydra_oidc_dynamic_client_registration_default_scope: None,
739            hydra_oidc_dynamic_client_registration_enabled: None,
740            hydra_oidc_subject_identifiers_pairwise_salt: None,
741            hydra_oidc_subject_identifiers_supported_types: None,
742            hydra_secrets_cookie: None,
743            hydra_secrets_pagination: None,
744            hydra_secrets_system: None,
745            hydra_serve_cookies_same_site_legacy_workaround: None,
746            hydra_serve_cookies_same_site_mode: None,
747            hydra_strategies_access_token: None,
748            hydra_strategies_jwt_scope_claim: None,
749            hydra_strategies_scope: None,
750            hydra_ttl_access_token: None,
751            hydra_ttl_auth_code: None,
752            hydra_ttl_id_token: None,
753            hydra_ttl_login_consent_request: None,
754            hydra_ttl_refresh_token: None,
755            hydra_urls_consent: None,
756            hydra_urls_error: None,
757            hydra_urls_login: None,
758            hydra_urls_logout: None,
759            hydra_urls_post_logout_redirect: None,
760            hydra_urls_registration: None,
761            hydra_urls_self_issuer: None,
762            hydra_webfinger_jwks_broadcast_keys: None,
763            hydra_webfinger_oidc_discovery_auth_url: None,
764            hydra_webfinger_oidc_discovery_client_registration_url: None,
765            hydra_webfinger_oidc_discovery_jwks_url: None,
766            hydra_webfinger_oidc_discovery_supported_claims: None,
767            hydra_webfinger_oidc_discovery_supported_scope: None,
768            hydra_webfinger_oidc_discovery_token_url: None,
769            hydra_webfinger_oidc_discovery_userinfo_url: None,
770            id: None,
771            keto_namespace_configuration: None,
772            keto_namespaces: None,
773            keto_secrets_pagination: None,
774            kratos_cookies_same_site: None,
775            kratos_courier_channels: None,
776            kratos_courier_delivery_strategy: None,
777            kratos_courier_http_request_config_auth_api_key_in: None,
778            kratos_courier_http_request_config_auth_api_key_name: None,
779            kratos_courier_http_request_config_auth_api_key_value: None,
780            kratos_courier_http_request_config_auth_basic_auth_password: None,
781            kratos_courier_http_request_config_auth_basic_auth_user: None,
782            kratos_courier_http_request_config_auth_type: None,
783            kratos_courier_http_request_config_body: None,
784            kratos_courier_http_request_config_headers: None,
785            kratos_courier_http_request_config_method: None,
786            kratos_courier_http_request_config_url: None,
787            kratos_courier_smtp_connection_uri: None,
788            kratos_courier_smtp_from_address: None,
789            kratos_courier_smtp_from_name: None,
790            kratos_courier_smtp_headers: None,
791            kratos_courier_smtp_local_name: None,
792            kratos_courier_templates_login_code_valid_email_body_html: None,
793            kratos_courier_templates_login_code_valid_email_body_plaintext: None,
794            kratos_courier_templates_login_code_valid_email_subject: None,
795            kratos_courier_templates_login_code_valid_sms_body_plaintext: None,
796            kratos_courier_templates_recovery_code_invalid_email_body_html: None,
797            kratos_courier_templates_recovery_code_invalid_email_body_plaintext: None,
798            kratos_courier_templates_recovery_code_invalid_email_subject: None,
799            kratos_courier_templates_recovery_code_valid_email_body_html: None,
800            kratos_courier_templates_recovery_code_valid_email_body_plaintext: None,
801            kratos_courier_templates_recovery_code_valid_email_subject: None,
802            kratos_courier_templates_recovery_invalid_email_body_html: None,
803            kratos_courier_templates_recovery_invalid_email_body_plaintext: None,
804            kratos_courier_templates_recovery_invalid_email_subject: None,
805            kratos_courier_templates_recovery_valid_email_body_html: None,
806            kratos_courier_templates_recovery_valid_email_body_plaintext: None,
807            kratos_courier_templates_recovery_valid_email_subject: None,
808            kratos_courier_templates_registration_code_valid_email_body_html: None,
809            kratos_courier_templates_registration_code_valid_email_body_plaintext: None,
810            kratos_courier_templates_registration_code_valid_email_subject: None,
811            kratos_courier_templates_registration_code_valid_sms_body_plaintext: None,
812            kratos_courier_templates_verification_code_invalid_email_body_html: None,
813            kratos_courier_templates_verification_code_invalid_email_body_plaintext: None,
814            kratos_courier_templates_verification_code_invalid_email_subject: None,
815            kratos_courier_templates_verification_code_valid_email_body_html: None,
816            kratos_courier_templates_verification_code_valid_email_body_plaintext: None,
817            kratos_courier_templates_verification_code_valid_email_subject: None,
818            kratos_courier_templates_verification_code_valid_sms_body_plaintext: None,
819            kratos_courier_templates_verification_invalid_email_body_html: None,
820            kratos_courier_templates_verification_invalid_email_body_plaintext: None,
821            kratos_courier_templates_verification_invalid_email_subject: None,
822            kratos_courier_templates_verification_valid_email_body_html: None,
823            kratos_courier_templates_verification_valid_email_body_plaintext: None,
824            kratos_courier_templates_verification_valid_email_subject: None,
825            kratos_feature_flags_cacheable_sessions: None,
826            kratos_feature_flags_cacheable_sessions_max_age: None,
827            kratos_feature_flags_choose_recovery_address: None,
828            kratos_feature_flags_faster_session_extend: None,
829            kratos_feature_flags_legacy_continue_with_verification_ui: None,
830            kratos_feature_flags_legacy_oidc_registration_node_group: None,
831            kratos_feature_flags_legacy_require_verified_login_error: None,
832            kratos_feature_flags_password_profile_registration_node_group: None,
833            kratos_feature_flags_use_continue_with_transitions: None,
834            kratos_identity_schemas: None,
835            kratos_oauth2_provider_headers: None,
836            kratos_oauth2_provider_override_return_to: None,
837            kratos_oauth2_provider_url: None,
838            kratos_preview_default_read_consistency_level: None,
839            kratos_secrets_cipher: None,
840            kratos_secrets_cookie: None,
841            kratos_secrets_default: None,
842            kratos_secrets_pagination: None,
843            kratos_security_account_enumeration_mitigate: None,
844            kratos_selfservice_allowed_return_urls: None,
845            kratos_selfservice_default_browser_return_url: None,
846            kratos_selfservice_flows_error_ui_url: None,
847            kratos_selfservice_flows_login_after_code_default_browser_return_url: None,
848            kratos_selfservice_flows_login_after_default_browser_return_url: None,
849            kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url: None,
850            kratos_selfservice_flows_login_after_oidc_default_browser_return_url: None,
851            kratos_selfservice_flows_login_after_passkey_default_browser_return_url: None,
852            kratos_selfservice_flows_login_after_password_default_browser_return_url: None,
853            kratos_selfservice_flows_login_after_totp_default_browser_return_url: None,
854            kratos_selfservice_flows_login_after_webauthn_default_browser_return_url: None,
855            kratos_selfservice_flows_login_lifespan: None,
856            kratos_selfservice_flows_login_style: None,
857            kratos_selfservice_flows_login_ui_url: None,
858            kratos_selfservice_flows_logout_after_default_browser_return_url: None,
859            kratos_selfservice_flows_recovery_after_default_browser_return_url: None,
860            kratos_selfservice_flows_recovery_enabled: None,
861            kratos_selfservice_flows_recovery_lifespan: None,
862            kratos_selfservice_flows_recovery_notify_unknown_recipients: None,
863            kratos_selfservice_flows_recovery_ui_url: None,
864            kratos_selfservice_flows_recovery_use: None,
865            kratos_selfservice_flows_registration_after_code_default_browser_return_url: None,
866            kratos_selfservice_flows_registration_after_default_browser_return_url: None,
867            kratos_selfservice_flows_registration_after_oidc_default_browser_return_url: None,
868            kratos_selfservice_flows_registration_after_passkey_default_browser_return_url: None,
869            kratos_selfservice_flows_registration_after_password_default_browser_return_url: None,
870            kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url: None,
871            kratos_selfservice_flows_registration_enable_legacy_one_step: None,
872            kratos_selfservice_flows_registration_enabled: None,
873            kratos_selfservice_flows_registration_lifespan: None,
874            kratos_selfservice_flows_registration_login_hints: None,
875            kratos_selfservice_flows_registration_ui_url: None,
876            kratos_selfservice_flows_settings_after_default_browser_return_url: None,
877            kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url: None,
878            kratos_selfservice_flows_settings_after_oidc_default_browser_return_url: None,
879            kratos_selfservice_flows_settings_after_passkey_default_browser_return_url: None,
880            kratos_selfservice_flows_settings_after_password_default_browser_return_url: None,
881            kratos_selfservice_flows_settings_after_profile_default_browser_return_url: None,
882            kratos_selfservice_flows_settings_after_totp_default_browser_return_url: None,
883            kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url: None,
884            kratos_selfservice_flows_settings_lifespan: None,
885            kratos_selfservice_flows_settings_privileged_session_max_age: None,
886            kratos_selfservice_flows_settings_required_aal: None,
887            kratos_selfservice_flows_settings_ui_url: None,
888            kratos_selfservice_flows_verification_after_default_browser_return_url: None,
889            kratos_selfservice_flows_verification_enabled: None,
890            kratos_selfservice_flows_verification_lifespan: None,
891            kratos_selfservice_flows_verification_notify_unknown_recipients: None,
892            kratos_selfservice_flows_verification_ui_url: None,
893            kratos_selfservice_flows_verification_use: None,
894            kratos_selfservice_methods_captcha_config_allowed_domains: None,
895            kratos_selfservice_methods_captcha_config_byo: None,
896            kratos_selfservice_methods_captcha_config_cf_turnstile_byo_secret: None,
897            kratos_selfservice_methods_captcha_config_cf_turnstile_byo_sitekey: None,
898            kratos_selfservice_methods_captcha_config_cf_turnstile_secret: None,
899            kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey: None,
900            kratos_selfservice_methods_captcha_config_legacy_inject_node: None,
901            kratos_selfservice_methods_captcha_enabled: None,
902            kratos_selfservice_methods_code_config_lifespan: None,
903            kratos_selfservice_methods_code_config_max_submissions: None,
904            kratos_selfservice_methods_code_config_missing_credential_fallback_enabled: None,
905            kratos_selfservice_methods_code_enabled: None,
906            kratos_selfservice_methods_code_mfa_enabled: None,
907            kratos_selfservice_methods_code_passwordless_enabled: None,
908            kratos_selfservice_methods_code_passwordless_login_fallback_enabled: None,
909            kratos_selfservice_methods_link_config_base_url: None,
910            kratos_selfservice_methods_link_config_lifespan: None,
911            kratos_selfservice_methods_link_enabled: None,
912            kratos_selfservice_methods_lookup_secret_enabled: None,
913            kratos_selfservice_methods_oidc_config_base_redirect_uri: None,
914            kratos_selfservice_methods_oidc_config_providers: None,
915            kratos_selfservice_methods_oidc_enable_auto_link_policy: None,
916            kratos_selfservice_methods_oidc_enabled: None,
917            kratos_selfservice_methods_passkey_config_rp_display_name: None,
918            kratos_selfservice_methods_passkey_config_rp_id: None,
919            kratos_selfservice_methods_passkey_config_rp_origins: None,
920            kratos_selfservice_methods_passkey_enabled: None,
921            kratos_selfservice_methods_password_config_haveibeenpwned_enabled: None,
922            kratos_selfservice_methods_password_config_identifier_similarity_check_enabled: None,
923            kratos_selfservice_methods_password_config_ignore_network_errors: None,
924            kratos_selfservice_methods_password_config_max_breaches: None,
925            kratos_selfservice_methods_password_config_min_password_length: None,
926            kratos_selfservice_methods_password_enabled: None,
927            kratos_selfservice_methods_profile_enabled: None,
928            kratos_selfservice_methods_saml_config_providers: None,
929            kratos_selfservice_methods_saml_enabled: None,
930            kratos_selfservice_methods_totp_config_issuer: None,
931            kratos_selfservice_methods_totp_enabled: None,
932            kratos_selfservice_methods_webauthn_config_passwordless: None,
933            kratos_selfservice_methods_webauthn_config_rp_display_name: None,
934            kratos_selfservice_methods_webauthn_config_rp_icon: None,
935            kratos_selfservice_methods_webauthn_config_rp_id: None,
936            kratos_selfservice_methods_webauthn_config_rp_origins: None,
937            kratos_selfservice_methods_webauthn_enabled: None,
938            kratos_session_cookie_persistent: None,
939            kratos_session_cookie_same_site: None,
940            kratos_session_lifespan: None,
941            kratos_session_whoami_required_aal: None,
942            kratos_session_whoami_tokenizer_templates: None,
943            name,
944            organizations: None,
945            project_id: None,
946            project_revision_hooks: None,
947            scim_clients: None,
948            serve_admin_cors_allowed_origins: None,
949            serve_admin_cors_enabled: None,
950            serve_public_cors_allowed_origins: None,
951            serve_public_cors_enabled: None,
952            strict_security: None,
953            updated_at: None,
954        }
955    }
956}
957/// Defines access token type  This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt
958#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
959pub enum HydraStrategiesAccessTokenEnum {
960    #[serde(rename = "opaque")]
961    Opaque,
962    #[serde(rename = "jwt")]
963    Jwt,
964}
965
966impl Default for HydraStrategiesAccessTokenEnum {
967    fn default() -> HydraStrategiesAccessTokenEnum {
968        Self::Opaque
969    }
970}
971/// Define the claim to use as the scope in the access token.  This governs the \"strategies.jwt.scope_claim\" setting:  list: The scope claim is an array of strings named `scope`: `{ \"scope\": [\"read\", \"write\"] }` string: The scope claim is a space delimited list of strings named `scp`: `{ \"scp\": \"read write\" }` both: The scope claim is both a space delimited list and an array of strings named `scope` and `scp`: `{ \"scope\": [\"read\", \"write\"], \"scp\": \"read write\" }` list OAuth2JWTScopeClaimList string OAuth2JWTScopeClaimString both OAuth2JWTScopeClaimBoth
972#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
973pub enum HydraStrategiesJwtScopeClaimEnum {
974    #[serde(rename = "list")]
975    List,
976    #[serde(rename = "string")]
977    String,
978    #[serde(rename = "both")]
979    Both,
980}
981
982impl Default for HydraStrategiesJwtScopeClaimEnum {
983    fn default() -> HydraStrategiesJwtScopeClaimEnum {
984        Self::List
985    }
986}
987/// Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes  This governs the \"strategies.scope\" setting. exact Oauth2ScopeStrategyExact wildcard Oauth2ScopeStrategyWildcard
988#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
989pub enum HydraStrategiesScopeEnum {
990    #[serde(rename = "exact")]
991    Exact,
992    #[serde(rename = "wildcard")]
993    Wildcard,
994}
995
996impl Default for HydraStrategiesScopeEnum {
997    fn default() -> HydraStrategiesScopeEnum {
998        Self::Exact
999    }
1000}
1001/// Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")  This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
1002#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
1003pub enum KratosSelfserviceFlowsRecoveryUseEnum {
1004    #[serde(rename = "link")]
1005    Link,
1006    #[serde(rename = "code")]
1007    Code,
1008}
1009
1010impl Default for KratosSelfserviceFlowsRecoveryUseEnum {
1011    fn default() -> KratosSelfserviceFlowsRecoveryUseEnum {
1012        Self::Link
1013    }
1014}
1015/// Configures the Ory Kratos Strategy to use for Verification  This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
1016#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
1017pub enum KratosSelfserviceFlowsVerificationUseEnum {
1018    #[serde(rename = "link")]
1019    Link,
1020    #[serde(rename = "code")]
1021    Code,
1022}
1023
1024impl Default for KratosSelfserviceFlowsVerificationUseEnum {
1025    fn default() -> KratosSelfserviceFlowsVerificationUseEnum {
1026        Self::Link
1027    }
1028}
1029