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.43
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. This governs the \"default_locale\" setting.
20    #[serde(rename = "account_experience_default_locale", skip_serializing_if = "Option::is_none")]
21    pub account_experience_default_locale: Option<String>,
22    /// The Account Experience's Enabled Locales  This governs the locales that are available in the account experience. This governs the \"enabled_locales\" setting.
23    #[serde(rename = "account_experience_enabled_locales", skip_serializing_if = "Option::is_none")]
24    pub account_experience_enabled_locales: Option<Vec<String>>,
25    /// Holds the URL to the account experience's dark theme favicon (currently unused). This governs the \"favicon_dark\" setting.
26    #[serde(rename = "account_experience_favicon_dark", skip_serializing_if = "Option::is_none")]
27    pub account_experience_favicon_dark: Option<String>,
28    /// Holds the URL to the account experience's favicon. This governs the \"favicon_light\" setting.
29    #[serde(rename = "account_experience_favicon_light", skip_serializing_if = "Option::is_none")]
30    pub account_experience_favicon_light: Option<String>,
31    /// Whether to hide the Ory branding badge on the account experience. This governs the \"hide_ory_branding\" setting.
32    #[serde(rename = "account_experience_hide_ory_branding", skip_serializing_if = "Option::is_none")]
33    pub account_experience_hide_ory_branding: Option<bool>,
34    /// Whether to hide the registration link on the account experience login card. This governs the \"hide_registration_link\" setting.
35    #[serde(rename = "account_experience_hide_registration_link", skip_serializing_if = "Option::is_none")]
36    pub account_experience_hide_registration_link: Option<bool>,
37    /// 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. This governs the \"locale_behavior\" setting.
38    #[serde(rename = "account_experience_locale_behavior", skip_serializing_if = "Option::is_none")]
39    pub account_experience_locale_behavior: Option<String>,
40    /// Holds the URL to the account experience's dark theme logo (currently unused). This governs the \"logo_dark\" setting.
41    #[serde(rename = "account_experience_logo_dark", skip_serializing_if = "Option::is_none")]
42    pub account_experience_logo_dark: Option<String>,
43    /// Holds the URL to the account experience's logo. This governs the \"logo_light\" setting.
44    #[serde(rename = "account_experience_logo_light", skip_serializing_if = "Option::is_none")]
45    pub account_experience_logo_light: Option<String>,
46    /// Holds the URL to the account experience's dark theme variables. This governs the \"theme_variables_dark\" setting.
47    #[serde(rename = "account_experience_theme_variables_dark", skip_serializing_if = "Option::is_none")]
48    pub account_experience_theme_variables_dark: Option<String>,
49    /// Holds the URL to the account experience's light theme variables. This governs the \"theme_variables_light\" setting.
50    #[serde(rename = "account_experience_theme_variables_light", skip_serializing_if = "Option::is_none")]
51    pub account_experience_theme_variables_light: Option<String>,
52    /// The Project's Revision Creation Date
53    #[serde(rename = "created_at", skip_serializing_if = "Option::is_none")]
54    pub created_at: Option<String>,
55    /// Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`. This governs the \"disable_welcome_screen\" setting.
56    #[serde(rename = "disable_account_experience_welcome_screen", skip_serializing_if = "Option::is_none")]
57    pub disable_account_experience_welcome_screen: Option<bool>,
58    /// Whether the new account experience is enabled and reachable. This governs the \"enable_ax_v2\" setting.
59    #[serde(rename = "enable_ax_v2", skip_serializing_if = "Option::is_none")]
60    pub enable_ax_v2: Option<bool>,
61    /// A list of custom claims which are allowed to be added top level to the Access Token. They cannot override reserved claims.  This governs the \"oauth2.allowed_top_level_claims\" setting.
62    #[serde(rename = "hydra_oauth2_allowed_top_level_claims", skip_serializing_if = "Option::is_none")]
63    pub hydra_oauth2_allowed_top_level_claims: Option<Vec<String>>,
64    /// 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.
65    #[serde(rename = "hydra_oauth2_client_credentials_default_grant_allowed_scope", skip_serializing_if = "Option::is_none")]
66    pub hydra_oauth2_client_credentials_default_grant_allowed_scope: Option<bool>,
67    /// Set to true if you want to omit the `nbf` (not valid before) claim in the access token.  This governs the \"oauth2.exclude_not_before_claim\" setting.
68    #[serde(rename = "hydra_oauth2_exclude_not_before_claim", skip_serializing_if = "Option::is_none")]
69    pub hydra_oauth2_exclude_not_before_claim: Option<bool>,
70    /// 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.
71    #[serde(rename = "hydra_oauth2_grant_jwt_iat_optional", skip_serializing_if = "Option::is_none")]
72    pub hydra_oauth2_grant_jwt_iat_optional: Option<bool>,
73    /// 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.
74    #[serde(rename = "hydra_oauth2_grant_jwt_jti_optional", skip_serializing_if = "Option::is_none")]
75    pub hydra_oauth2_grant_jwt_jti_optional: Option<bool>,
76    /// 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.
77    #[serde(rename = "hydra_oauth2_grant_jwt_max_ttl", skip_serializing_if = "Option::is_none")]
78    pub hydra_oauth2_grant_jwt_max_ttl: Option<String>,
79    /// 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.
80    #[serde(rename = "hydra_oauth2_grant_refresh_token_rotation_grace_period", skip_serializing_if = "Option::is_none")]
81    pub hydra_oauth2_grant_refresh_token_rotation_grace_period: Option<String>,
82    /// Configures the OAuth2 Grant Refresh Token Rotation Grace Reuse Count.  The maximum number of times a refresh token can be reused within the grace period. If set to `null` or `0`, the limit is disabled.  This governs the \"oauth2.grant.refresh_token.rotation_grace_reuse_count\" setting.
83    #[serde(rename = "hydra_oauth2_grant_refresh_token_rotation_grace_reuse_count", skip_serializing_if = "Option::is_none")]
84    pub hydra_oauth2_grant_refresh_token_rotation_grace_reuse_count: Option<i64>,
85    /// Set to false if you don't want to mirror custom claims under 'ext'.  This governs the \"oauth2.mirror_top_level_claims\" setting.
86    #[serde(rename = "hydra_oauth2_mirror_top_level_claims", skip_serializing_if = "Option::is_none")]
87    pub hydra_oauth2_mirror_top_level_claims: Option<bool>,
88    /// Configures whether PKCE should be enforced for all OAuth2 Clients.  This governs the \"oauth2.pkce.enforced\" setting.
89    #[serde(rename = "hydra_oauth2_pkce_enforced", skip_serializing_if = "Option::is_none")]
90    pub hydra_oauth2_pkce_enforced: Option<bool>,
91    /// 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.
92    #[serde(rename = "hydra_oauth2_pkce_enforced_for_public_clients", skip_serializing_if = "Option::is_none")]
93    pub hydra_oauth2_pkce_enforced_for_public_clients: Option<bool>,
94    /// Set to true to keep custom claims that are not promoted to the top level in the 'ext' claim. Only applies when mirror_top_level_claims is false.  This governs the \"oauth2.preserve_ext_claims\" setting.
95    #[serde(rename = "hydra_oauth2_preserve_ext_claims", skip_serializing_if = "Option::is_none")]
96    pub hydra_oauth2_preserve_ext_claims: Option<bool>,
97    /// 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.
98    #[serde(rename = "hydra_oauth2_refresh_token_hook", skip_serializing_if = "Option::is_none")]
99    pub hydra_oauth2_refresh_token_hook: Option<String>,
100    /// 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.
101    #[serde(rename = "hydra_oauth2_token_hook", skip_serializing_if = "Option::is_none")]
102    pub hydra_oauth2_token_hook: Option<String>,
103    /// Sets a per-project Access Token, Refresh Token, and Authorization Code prefix. The literal \"%s\" is replaced at issuance time with the token kind: \"at\" (access token), \"rt\" (refresh token), or \"ac\" (authorization code). For example, \"acme_%s_\" yields \"acme_at_…\", \"acme_rt_…\", and \"acme_ac_…\".  Must be a fmt.Sprintf template with exactly one \"%s\" substitution. The rendered prefix may contain only ASCII letters, digits, and underscores — no other \"%\" directives (\"%d\", \"%%\", positional or width-flagged verbs), no hyphens, dots, slashes, whitespace, quotes, or non-ASCII characters. Leave empty to keep the default \"ory_%s_\" prefix.  This is an Enterprise feature.  This governs the \"oauth2.token_prefix\" setting.
104    #[serde(rename = "hydra_oauth2_token_prefix", skip_serializing_if = "Option::is_none")]
105    pub hydra_oauth2_token_prefix: Option<String>,
106    /// The OpenID Connect Dynamic Client Registration specification has no concept of whitelisting OAuth 2.0 Scope. If you want to expose Dynamic Client Registration, you should set the default scope enabled for newly registered clients. Keep in mind that users can overwrite this default by setting the \"scope\" key in the registration payload, effectively disabling the concept of whitelisted scopes.  This governs the \"oidc.dynamic_client_registration.default_scope\" setting.
107    #[serde(rename = "hydra_oidc_dynamic_client_registration_default_scope", skip_serializing_if = "Option::is_none")]
108    pub hydra_oidc_dynamic_client_registration_default_scope: Option<Vec<String>>,
109    /// Configures OpenID Connect Dynamic Client Registration.  This governs the \"oidc.dynamic_client_registration.enabled\" setting.
110    #[serde(rename = "hydra_oidc_dynamic_client_registration_enabled", skip_serializing_if = "Option::is_none")]
111    pub hydra_oidc_dynamic_client_registration_enabled: Option<bool>,
112    /// Configures OpenID Connect Discovery and overwrites the pairwise algorithm  This governs the \"oidc.subject_identifiers.pairwise_salt\" setting.
113    #[serde(rename = "hydra_oidc_subject_identifiers_pairwise_salt", skip_serializing_if = "Option::is_none")]
114    pub hydra_oidc_subject_identifiers_pairwise_salt: Option<String>,
115    /// Configures OpenID Connect Discovery and overwrites the list of Subject Identifier Algorithms to enable.  This governs the \"oidc.subject_identifiers.supported_types\" setting.
116    #[serde(rename = "hydra_oidc_subject_identifiers_supported_types", skip_serializing_if = "Option::is_none")]
117    pub hydra_oidc_subject_identifiers_supported_types: Option<Vec<String>>,
118    /// Configures the Ory Hydra Cookie Secret  This governs the \"secrets.cookie\" setting.
119    #[serde(rename = "hydra_secrets_cookie", skip_serializing_if = "Option::is_none")]
120    pub hydra_secrets_cookie: Option<Vec<String>>,
121    /// Configures the Ory Hydra Pagination Secret  This governs the \"secrets.pagination\" setting.
122    #[serde(rename = "hydra_secrets_pagination", skip_serializing_if = "Option::is_none")]
123    pub hydra_secrets_pagination: Option<Vec<String>>,
124    /// Configures the Ory Hydra System Secret  This governs the \"secrets.system\" setting.
125    #[serde(rename = "hydra_secrets_system", skip_serializing_if = "Option::is_none")]
126    pub hydra_secrets_system: Option<Vec<String>>,
127    /// Configures the Ory Hydra Cookie Same Site Legacy Workaround  This governs the \"serve.cookies.same_site_legacy_workaround\" setting.
128    #[serde(rename = "hydra_serve_cookies_same_site_legacy_workaround", skip_serializing_if = "Option::is_none")]
129    pub hydra_serve_cookies_same_site_legacy_workaround: Option<bool>,
130    /// Configures the Ory Hydra Cookie Same Site Mode  This governs the \"serve.cookies.same_site_mode\" setting.
131    #[serde(rename = "hydra_serve_cookies_same_site_mode", skip_serializing_if = "Option::is_none")]
132    pub hydra_serve_cookies_same_site_mode: Option<String>,
133    /// Defines access token type  This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt
134    #[serde(rename = "hydra_strategies_access_token", skip_serializing_if = "Option::is_none")]
135    pub hydra_strategies_access_token: Option<HydraStrategiesAccessTokenEnum>,
136    /// 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
137    #[serde(rename = "hydra_strategies_jwt_scope_claim", skip_serializing_if = "Option::is_none")]
138    pub hydra_strategies_jwt_scope_claim: Option<HydraStrategiesJwtScopeClaimEnum>,
139    /// 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
140    #[serde(rename = "hydra_strategies_scope", skip_serializing_if = "Option::is_none")]
141    pub hydra_strategies_scope: Option<HydraStrategiesScopeEnum>,
142    /// This governs the \"ttl.access_token\" setting.
143    #[serde(rename = "hydra_ttl_access_token", skip_serializing_if = "Option::is_none")]
144    pub hydra_ttl_access_token: Option<String>,
145    /// 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.
146    #[serde(rename = "hydra_ttl_auth_code", skip_serializing_if = "Option::is_none")]
147    pub hydra_ttl_auth_code: Option<String>,
148    /// This governs the \"ttl.id_token\" setting.
149    #[serde(rename = "hydra_ttl_id_token", skip_serializing_if = "Option::is_none")]
150    pub hydra_ttl_id_token: Option<String>,
151    /// Configures how long a user login and consent flow may take.  This governs the \"ttl.login_consent_request\" setting.
152    #[serde(rename = "hydra_ttl_login_consent_request", skip_serializing_if = "Option::is_none")]
153    pub hydra_ttl_login_consent_request: Option<String>,
154    /// 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.
155    #[serde(rename = "hydra_ttl_refresh_token", skip_serializing_if = "Option::is_none")]
156    pub hydra_ttl_refresh_token: Option<String>,
157    /// 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.
158    #[serde(rename = "hydra_urls_consent", skip_serializing_if = "Option::is_none")]
159    pub hydra_urls_consent: Option<String>,
160    /// 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.
161    #[serde(rename = "hydra_urls_error", skip_serializing_if = "Option::is_none")]
162    pub hydra_urls_error: Option<String>,
163    /// 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.
164    #[serde(rename = "hydra_urls_login", skip_serializing_if = "Option::is_none")]
165    pub hydra_urls_login: Option<String>,
166    /// Sets the logout endpoint.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.logout\" setting.
167    #[serde(rename = "hydra_urls_logout", skip_serializing_if = "Option::is_none")]
168    pub hydra_urls_logout: Option<String>,
169    /// 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.
170    #[serde(rename = "hydra_urls_post_logout_redirect", skip_serializing_if = "Option::is_none")]
171    pub hydra_urls_post_logout_redirect: Option<String>,
172    /// 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.
173    #[serde(rename = "hydra_urls_registration", skip_serializing_if = "Option::is_none")]
174    pub hydra_urls_registration: Option<String>,
175    /// 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.
176    #[serde(rename = "hydra_urls_self_issuer", skip_serializing_if = "Option::is_none")]
177    pub hydra_urls_self_issuer: Option<String>,
178    /// A list of JSON Web Keys that should be exposed at that endpoint. This is usually the public key for verifying OpenID Connect ID Tokens. However, you might want to add additional keys here as well.  This governs the \"webfinger.jwks.broadcast_keys\" setting.
179    #[serde(rename = "hydra_webfinger_jwks_broadcast_keys", skip_serializing_if = "Option::is_none")]
180    pub hydra_webfinger_jwks_broadcast_keys: Option<Vec<String>>,
181    /// Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL.  This governs the \"webfinger.oidc_discovery.auth_url\" setting.
182    #[serde(rename = "hydra_webfinger_oidc_discovery_auth_url", skip_serializing_if = "Option::is_none")]
183    pub hydra_webfinger_oidc_discovery_auth_url: Option<String>,
184    /// Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint.  This governs the \"webfinger.oidc_discovery.client_registration_url\" setting.
185    #[serde(rename = "hydra_webfinger_oidc_discovery_client_registration_url", skip_serializing_if = "Option::is_none")]
186    pub hydra_webfinger_oidc_discovery_client_registration_url: Option<String>,
187    /// Configures OpenID Connect Discovery and overwrites the JWKS URL.  This governs the \"webfinger.oidc_discovery.jwks_url\" setting.
188    #[serde(rename = "hydra_webfinger_oidc_discovery_jwks_url", skip_serializing_if = "Option::is_none")]
189    pub hydra_webfinger_oidc_discovery_jwks_url: Option<String>,
190    /// Configures OpenID Connect Discovery and overwrites a list of supported claims to be broadcasted. Claim \"sub\" is always included.  This governs the \"webfinger.oidc_discovery.supported_claims\" setting.
191    #[serde(rename = "hydra_webfinger_oidc_discovery_supported_claims", skip_serializing_if = "Option::is_none")]
192    pub hydra_webfinger_oidc_discovery_supported_claims: Option<Vec<String>>,
193    /// Configures OpenID Connect Discovery and overwrites the scope OAuth 2.0 Clients may request. Scope `offline`, `offline_access`, and `openid` are always included.  This governs the \"webfinger.oidc_discovery.supported_scope\" setting.
194    #[serde(rename = "hydra_webfinger_oidc_discovery_supported_scope", skip_serializing_if = "Option::is_none")]
195    pub hydra_webfinger_oidc_discovery_supported_scope: Option<Vec<String>>,
196    /// Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL.  This governs the \"webfinger.oidc_discovery.token_url\" setting.
197    #[serde(rename = "hydra_webfinger_oidc_discovery_token_url", skip_serializing_if = "Option::is_none")]
198    pub hydra_webfinger_oidc_discovery_token_url: Option<String>,
199    /// 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.
200    #[serde(rename = "hydra_webfinger_oidc_discovery_userinfo_url", skip_serializing_if = "Option::is_none")]
201    pub hydra_webfinger_oidc_discovery_userinfo_url: Option<String>,
202    /// The revision ID.
203    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
204    pub id: Option<String>,
205    /// The Revisions' Keto Namespace Configuration  The string is a URL pointing to an OPL file with the configuration.  This governs the \"namespaces.location\" setting.
206    #[serde(rename = "keto_namespace_configuration", skip_serializing_if = "Option::is_none")]
207    pub keto_namespace_configuration: Option<String>,
208    #[serde(rename = "keto_namespaces", skip_serializing_if = "Option::is_none")]
209    pub keto_namespaces: Option<Vec<models::KetoNamespace>>,
210    /// Configures Keto's pagination secrets.  This governs the \"secrets.pagination\" setting.
211    #[serde(rename = "keto_secrets_pagination", skip_serializing_if = "Option::is_none")]
212    pub keto_secrets_pagination: Option<Vec<String>>,
213    /// Configures the Ory Kratos Cookie SameSite Attribute  This governs the \"cookies.same_site\" setting.
214    #[serde(rename = "kratos_cookies_same_site", skip_serializing_if = "Option::is_none")]
215    pub kratos_cookies_same_site: Option<String>,
216    #[serde(rename = "kratos_courier_channels", skip_serializing_if = "Option::is_none")]
217    pub kratos_courier_channels: Option<Vec<models::NormalizedProjectRevisionCourierChannel>>,
218    /// The delivery strategy to use when sending emails  This governs the \"courier.delivery_strategy\" setting.  `smtp`: Use SMTP server `http`: Use the built in HTTP client to send the email to some remote service
219    #[serde(rename = "kratos_courier_delivery_strategy", skip_serializing_if = "Option::is_none")]
220    pub kratos_courier_delivery_strategy: Option<String>,
221    /// 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.request_config.auth.config.in\" setting.
222    #[serde(rename = "kratos_courier_http_request_config_auth_api_key_in", skip_serializing_if = "Option::is_none")]
223    pub kratos_courier_http_request_config_auth_api_key_in: Option<String>,
224    /// The name of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.request_config.auth.config.name\" setting.
225    #[serde(rename = "kratos_courier_http_request_config_auth_api_key_name", skip_serializing_if = "Option::is_none")]
226    pub kratos_courier_http_request_config_auth_api_key_name: Option<String>,
227    /// The value of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.request_config.auth.config.value\" setting.
228    #[serde(rename = "kratos_courier_http_request_config_auth_api_key_value", skip_serializing_if = "Option::is_none")]
229    pub kratos_courier_http_request_config_auth_api_key_value: Option<String>,
230    /// The password to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.request_config.auth.config.password\" setting.
231    #[serde(rename = "kratos_courier_http_request_config_auth_basic_auth_password", skip_serializing_if = "Option::is_none")]
232    pub kratos_courier_http_request_config_auth_basic_auth_password: Option<String>,
233    /// The user to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.request_config.auth.config.user\" setting.
234    #[serde(rename = "kratos_courier_http_request_config_auth_basic_auth_user", skip_serializing_if = "Option::is_none")]
235    pub kratos_courier_http_request_config_auth_basic_auth_user: Option<String>,
236    /// The authentication type to use while contacting the remote HTTP email sending service  This governs the \"courier.http.request_config.auth.type\" setting.  `basic_auth`: Use Basic Authentication `api_key`: Use API Key Authentication in a header or cookie
237    #[serde(rename = "kratos_courier_http_request_config_auth_type", skip_serializing_if = "Option::is_none")]
238    pub kratos_courier_http_request_config_auth_type: Option<String>,
239    /// 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.request_config.body\" setting.
240    #[serde(rename = "kratos_courier_http_request_config_body", skip_serializing_if = "Option::is_none")]
241    pub kratos_courier_http_request_config_body: Option<String>,
242    /// Any additional headers to send to the remote HTTP email sending service  This governs the \"courier.http.request_config.headers\" setting.
243    #[serde(rename = "kratos_courier_http_request_config_headers", skip_serializing_if = "Option::is_none")]
244    pub kratos_courier_http_request_config_headers: Option<serde_json::Value>,
245    /// The http METHOD to use when calling the remote HTTP email sending service  This governs the \"courier.http.request_config.method\" setting.
246    #[serde(rename = "kratos_courier_http_request_config_method", skip_serializing_if = "Option::is_none")]
247    pub kratos_courier_http_request_config_method: Option<String>,
248    /// The URL of the remote HTTP email sending service  This governs the \"courier.http.request_config.url\" setting.
249    #[serde(rename = "kratos_courier_http_request_config_url", skip_serializing_if = "Option::is_none")]
250    pub kratos_courier_http_request_config_url: Option<String>,
251    /// Configures the Ory Kratos SMTP Connection URI  This governs the \"courier.smtp.connection_uri\" setting.
252    #[serde(rename = "kratos_courier_smtp_connection_uri", skip_serializing_if = "Option::is_none")]
253    pub kratos_courier_smtp_connection_uri: Option<String>,
254    /// Configures the Ory Kratos SMTP From Address  This governs the \"courier.smtp.from_address\" setting.
255    #[serde(rename = "kratos_courier_smtp_from_address", skip_serializing_if = "Option::is_none")]
256    pub kratos_courier_smtp_from_address: Option<String>,
257    /// Configures the Ory Kratos SMTP From Name  This governs the \"courier.smtp.from_name\" setting.
258    #[serde(rename = "kratos_courier_smtp_from_name", skip_serializing_if = "Option::is_none")]
259    pub kratos_courier_smtp_from_name: Option<String>,
260    /// Configures the Ory Kratos SMTP Connection Headers  This governs the \"courier.smtp.headers\" setting.
261    #[serde(rename = "kratos_courier_smtp_headers", skip_serializing_if = "Option::is_none")]
262    pub kratos_courier_smtp_headers: Option<serde_json::Value>,
263    /// Configures the local_name to use in SMTP connections  This governs the \"courier.smtp.local_name\" setting.
264    #[serde(rename = "kratos_courier_smtp_local_name", skip_serializing_if = "Option::is_none")]
265    pub kratos_courier_smtp_local_name: Option<String>,
266    /// Configures the Ory Kratos Valid Login via Code Email Body HTML Template  This governs the \"courier.templates.login_code.valid.email.body.html\" setting.
267    #[serde(rename = "kratos_courier_templates_login_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
268    pub kratos_courier_templates_login_code_valid_email_body_html: Option<String>,
269    /// Configures the Ory Kratos Valid Login via Code Email Body Plaintext Template  This governs the \"courier.templates.login_code.valid.email.body.plaintext\" setting.
270    #[serde(rename = "kratos_courier_templates_login_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
271    pub kratos_courier_templates_login_code_valid_email_body_plaintext: Option<String>,
272    /// Configures the Ory Kratos Valid Login via Code Email Subject Template  This governs the \"courier.templates.login_code.valid.email.subject\" setting.
273    #[serde(rename = "kratos_courier_templates_login_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
274    pub kratos_courier_templates_login_code_valid_email_subject: Option<String>,
275    /// Configures the Ory Kratos Valid Login via Code SMS plain text body  This governs the \"courier.templates.login_code.valid.sms.body.plaintext\" setting.
276    #[serde(rename = "kratos_courier_templates_login_code_valid_sms_body_plaintext", skip_serializing_if = "Option::is_none")]
277    pub kratos_courier_templates_login_code_valid_sms_body_plaintext: Option<String>,
278    /// Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template  This governs the \"courier.templates.recovery_code.invalid.email.body.html\" setting.
279    #[serde(rename = "kratos_courier_templates_recovery_code_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
280    pub kratos_courier_templates_recovery_code_invalid_email_body_html: Option<String>,
281    /// Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template  This governs the \"courier.templates.recovery_code.invalid.email.body.plaintext\" setting.
282    #[serde(rename = "kratos_courier_templates_recovery_code_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
283    pub kratos_courier_templates_recovery_code_invalid_email_body_plaintext: Option<String>,
284    /// Configures the Ory Kratos Invalid Recovery via Code Email Subject Template  This governs the \"courier.templates.recovery_code.invalid.email.subject\" setting.
285    #[serde(rename = "kratos_courier_templates_recovery_code_invalid_email_subject", skip_serializing_if = "Option::is_none")]
286    pub kratos_courier_templates_recovery_code_invalid_email_subject: Option<String>,
287    /// Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template  This governs the \"courier.templates.recovery_code.valid.email.body.html\" setting.
288    #[serde(rename = "kratos_courier_templates_recovery_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
289    pub kratos_courier_templates_recovery_code_valid_email_body_html: Option<String>,
290    /// Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template  This governs the \"courier.templates.recovery_code.valid.email.body.plaintext\" setting.
291    #[serde(rename = "kratos_courier_templates_recovery_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
292    pub kratos_courier_templates_recovery_code_valid_email_body_plaintext: Option<String>,
293    /// Configures the Ory Kratos Valid Recovery via Code Email Subject Template  This governs the \"courier.templates.recovery_code.valid.email.subject\" setting.
294    #[serde(rename = "kratos_courier_templates_recovery_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
295    pub kratos_courier_templates_recovery_code_valid_email_subject: Option<String>,
296    /// Configures the Ory Kratos Invalid Recovery Email Body HTML Template  This governs the \"courier.templates.recovery.invalid.email.body.html\" setting.
297    #[serde(rename = "kratos_courier_templates_recovery_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
298    pub kratos_courier_templates_recovery_invalid_email_body_html: Option<String>,
299    /// Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template  This governs the \"courier.templates.recovery.invalid.email.body.plaintext\" setting.
300    #[serde(rename = "kratos_courier_templates_recovery_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
301    pub kratos_courier_templates_recovery_invalid_email_body_plaintext: Option<String>,
302    /// Configures the Ory Kratos Invalid Recovery Email Subject Template  This governs the \"courier.templates.recovery.invalid.email.subject\" setting.
303    #[serde(rename = "kratos_courier_templates_recovery_invalid_email_subject", skip_serializing_if = "Option::is_none")]
304    pub kratos_courier_templates_recovery_invalid_email_subject: Option<String>,
305    /// Configures the Ory Kratos Valid Recovery Email Body HTML Template  This governs the \"courier.templates.recovery.valid.email.body.html\" setting.
306    #[serde(rename = "kratos_courier_templates_recovery_valid_email_body_html", skip_serializing_if = "Option::is_none")]
307    pub kratos_courier_templates_recovery_valid_email_body_html: Option<String>,
308    /// Configures the Ory Kratos Valid Recovery Email Body Plaintext Template  This governs the \"courier.templates.recovery.valid.email.body.plaintext\" setting.
309    #[serde(rename = "kratos_courier_templates_recovery_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
310    pub kratos_courier_templates_recovery_valid_email_body_plaintext: Option<String>,
311    /// Configures the Ory Kratos Valid Recovery Email Subject Template  This governs the \"courier.templates.recovery.valid.email.subject\" setting.
312    #[serde(rename = "kratos_courier_templates_recovery_valid_email_subject", skip_serializing_if = "Option::is_none")]
313    pub kratos_courier_templates_recovery_valid_email_subject: Option<String>,
314    /// Configures the Ory Kratos Valid Registration via Code Email Body HTML Template  This governs the \"courier.templates.registration_code.valid.email.body.html\" setting.
315    #[serde(rename = "kratos_courier_templates_registration_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
316    pub kratos_courier_templates_registration_code_valid_email_body_html: Option<String>,
317    /// Configures the Ory Kratos Valid Registration via Code Email Body Plaintext Template  This governs the \"courier.templates.registration_code.valid.email.body.plaintext\" setting.
318    #[serde(rename = "kratos_courier_templates_registration_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
319    pub kratos_courier_templates_registration_code_valid_email_body_plaintext: Option<String>,
320    /// Configures the Ory Kratos Valid Registration via Code Email Subject Template  This governs the \"courier.templates.registration_code.valid.email.subject\" setting.
321    #[serde(rename = "kratos_courier_templates_registration_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
322    pub kratos_courier_templates_registration_code_valid_email_subject: Option<String>,
323    /// Configures the Ory Kratos Valid Registration via Code SMS Body Plaintext Template  This governs the \"courier.templates.registration_code.valid.sms.body.plaintext\" setting.
324    #[serde(rename = "kratos_courier_templates_registration_code_valid_sms_body_plaintext", skip_serializing_if = "Option::is_none")]
325    pub kratos_courier_templates_registration_code_valid_sms_body_plaintext: Option<String>,
326    /// Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template  This governs the \"courier.templates.verification_code.invalid.email.body.html\" setting.
327    #[serde(rename = "kratos_courier_templates_verification_code_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
328    pub kratos_courier_templates_verification_code_invalid_email_body_html: Option<String>,
329    /// Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template  This governs the \"courier.templates.verification_code.invalid.email.body.plaintext\" setting.
330    #[serde(rename = "kratos_courier_templates_verification_code_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
331    pub kratos_courier_templates_verification_code_invalid_email_body_plaintext: Option<String>,
332    /// Configures the Ory Kratos Invalid Verification via Code Email Subject Template  This governs the \"courier.templates.verification_code.invalid.email.subject\" setting.
333    #[serde(rename = "kratos_courier_templates_verification_code_invalid_email_subject", skip_serializing_if = "Option::is_none")]
334    pub kratos_courier_templates_verification_code_invalid_email_subject: Option<String>,
335    /// Configures the Ory Kratos Valid Verification via Code Email Body HTML Template  This governs the \"courier.templates.verification_code.valid.email.body.html\" setting.
336    #[serde(rename = "kratos_courier_templates_verification_code_valid_email_body_html", skip_serializing_if = "Option::is_none")]
337    pub kratos_courier_templates_verification_code_valid_email_body_html: Option<String>,
338    /// Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template  This governs the \"courier.templates.verification_code.valid.email.body.plaintext\" setting.
339    #[serde(rename = "kratos_courier_templates_verification_code_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
340    pub kratos_courier_templates_verification_code_valid_email_body_plaintext: Option<String>,
341    /// Configures the Ory Kratos Valid Verification via Code Email Subject Template  This governs the \"courier.templates.verification_code.valid.email.subject\" setting.
342    #[serde(rename = "kratos_courier_templates_verification_code_valid_email_subject", skip_serializing_if = "Option::is_none")]
343    pub kratos_courier_templates_verification_code_valid_email_subject: Option<String>,
344    /// Configures the Ory Kratos Valid Verification via Code SMS Body Plaintext  This governs the \"courier.templates.verification_code.valid.sms.body.plaintext\" setting.
345    #[serde(rename = "kratos_courier_templates_verification_code_valid_sms_body_plaintext", skip_serializing_if = "Option::is_none")]
346    pub kratos_courier_templates_verification_code_valid_sms_body_plaintext: Option<String>,
347    /// Configures the Ory Kratos Invalid Verification Email Body HTML Template  This governs the \"courier.templates.verification.invalid.email.body.html\" setting.
348    #[serde(rename = "kratos_courier_templates_verification_invalid_email_body_html", skip_serializing_if = "Option::is_none")]
349    pub kratos_courier_templates_verification_invalid_email_body_html: Option<String>,
350    /// Configures the Ory Kratos Invalid Verification Email Body Plaintext Template  This governs the \"courier.templates.verification.invalid.email.body.plaintext\" setting.
351    #[serde(rename = "kratos_courier_templates_verification_invalid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
352    pub kratos_courier_templates_verification_invalid_email_body_plaintext: Option<String>,
353    /// Configures the Ory Kratos Invalid Verification Email Subject Template  This governs the \"courier.templates.verification.invalid.email.subject\" setting.
354    #[serde(rename = "kratos_courier_templates_verification_invalid_email_subject", skip_serializing_if = "Option::is_none")]
355    pub kratos_courier_templates_verification_invalid_email_subject: Option<String>,
356    /// Configures the Ory Kratos Valid Verification Email Body HTML Template  This governs the \"courier.templates.verification.valid.email.body.html\" setting.
357    #[serde(rename = "kratos_courier_templates_verification_valid_email_body_html", skip_serializing_if = "Option::is_none")]
358    pub kratos_courier_templates_verification_valid_email_body_html: Option<String>,
359    /// Configures the Ory Kratos Valid Verification Email Body Plaintext Template  This governs the \"courier.templates.verification.valid.email.body.plaintext\" setting.
360    #[serde(rename = "kratos_courier_templates_verification_valid_email_body_plaintext", skip_serializing_if = "Option::is_none")]
361    pub kratos_courier_templates_verification_valid_email_body_plaintext: Option<String>,
362    /// Configures the Ory Kratos Valid Verification Email Subject Template  This governs the \"courier.templates.verification.valid.email.subject\" setting.
363    #[serde(rename = "kratos_courier_templates_verification_valid_email_subject", skip_serializing_if = "Option::is_none")]
364    pub kratos_courier_templates_verification_valid_email_subject: Option<String>,
365    /// Configures the Ory Kratos Session caching feature flag  This governs the \"feature_flags.cacheable_sessions\" setting.
366    #[serde(rename = "kratos_feature_flags_cacheable_sessions", skip_serializing_if = "Option::is_none")]
367    pub kratos_feature_flags_cacheable_sessions: Option<bool>,
368    /// Configures the Ory Kratos Session caching max-age feature flag  This governs the \"feature_flags.cacheable_sessions_max_age\" setting.
369    #[serde(rename = "kratos_feature_flags_cacheable_sessions_max_age", skip_serializing_if = "Option::is_none")]
370    pub kratos_feature_flags_cacheable_sessions_max_age: Option<String>,
371    /// This governs the \"feature_flags.choose_recovery_address\" setting.
372    #[serde(rename = "kratos_feature_flags_choose_recovery_address", skip_serializing_if = "Option::is_none")]
373    pub kratos_feature_flags_choose_recovery_address: Option<bool>,
374    /// 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.
375    #[serde(rename = "kratos_feature_flags_faster_session_extend", skip_serializing_if = "Option::is_none")]
376    pub kratos_feature_flags_faster_session_extend: Option<bool>,
377    /// 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.
378    #[serde(rename = "kratos_feature_flags_legacy_continue_with_verification_ui", skip_serializing_if = "Option::is_none")]
379    pub kratos_feature_flags_legacy_continue_with_verification_ui: Option<bool>,
380    /// 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.
381    #[serde(rename = "kratos_feature_flags_legacy_oidc_registration_node_group", skip_serializing_if = "Option::is_none")]
382    pub kratos_feature_flags_legacy_oidc_registration_node_group: Option<bool>,
383    /// 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.
384    #[serde(rename = "kratos_feature_flags_legacy_require_verified_login_error", skip_serializing_if = "Option::is_none")]
385    pub kratos_feature_flags_legacy_require_verified_login_error: Option<bool>,
386    /// 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\".  This governs the \"feature_flags.password_profile_registration_node_group\" setting.
387    #[serde(rename = "kratos_feature_flags_password_profile_registration_node_group", skip_serializing_if = "Option::is_none")]
388    pub kratos_feature_flags_password_profile_registration_node_group: Option<bool>,
389    /// Configures the Ory Kratos Session use_continue_with_transitions flag  This governs the \"feature_flags.use_continue_with_transitions\" setting.
390    #[serde(rename = "kratos_feature_flags_use_continue_with_transitions", skip_serializing_if = "Option::is_none")]
391    pub kratos_feature_flags_use_continue_with_transitions: Option<bool>,
392    #[serde(rename = "kratos_identity_schemas", skip_serializing_if = "Option::is_none")]
393    pub kratos_identity_schemas: Option<Vec<models::NormalizedProjectRevisionIdentitySchema>>,
394    /// Configures the OAuth2 Provider Integration HTTP Headers  This governs the \"oauth2_provider.headers\" setting.
395    #[serde(rename = "kratos_oauth2_provider_headers", skip_serializing_if = "Option::is_none")]
396    pub kratos_oauth2_provider_headers: Option<serde_json::Value>,
397    /// 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.  This governs the \"oauth2_provider.override_return_to\" setting.
398    #[serde(rename = "kratos_oauth2_provider_override_return_to", skip_serializing_if = "Option::is_none")]
399    pub kratos_oauth2_provider_override_return_to: Option<bool>,
400    /// The Revisions' OAuth2 Provider Integration URL  This governs the \"oauth2_provider.url\" setting.
401    #[serde(rename = "kratos_oauth2_provider_url", skip_serializing_if = "Option::is_none")]
402    pub kratos_oauth2_provider_url: Option<String>,
403    /// Configures the default read consistency level for identity APIs  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. This governs the \"preview.default_read_consistency_level\" setting.
404    #[serde(rename = "kratos_preview_default_read_consistency_level", skip_serializing_if = "Option::is_none")]
405    pub kratos_preview_default_read_consistency_level: Option<String>,
406    /// Configures the Ory Kratos Cipher Secret  This governs the \"secrets.cipher\" setting.
407    #[serde(rename = "kratos_secrets_cipher", skip_serializing_if = "Option::is_none")]
408    pub kratos_secrets_cipher: Option<Vec<String>>,
409    /// Configures the Ory Kratos Cookie Secret  This governs the \"secrets.cookie\" setting.
410    #[serde(rename = "kratos_secrets_cookie", skip_serializing_if = "Option::is_none")]
411    pub kratos_secrets_cookie: Option<Vec<String>>,
412    /// Configures the Ory Kratos Default Secret  This governs the \"secrets.default\" setting.
413    #[serde(rename = "kratos_secrets_default", skip_serializing_if = "Option::is_none")]
414    pub kratos_secrets_default: Option<Vec<String>>,
415    /// Configures the Ory Kratos Pagination Secret  This governs the \"secrets.pagination\" setting.
416    #[serde(rename = "kratos_secrets_pagination", skip_serializing_if = "Option::is_none")]
417    pub kratos_secrets_pagination: Option<Vec<String>>,
418    /// Configures if account enumeration should be mitigated when using identifier first login.  This governs the \"security.account_enumeration.mitigate\" setting.
419    #[serde(rename = "kratos_security_account_enumeration_mitigate", skip_serializing_if = "Option::is_none")]
420    pub kratos_security_account_enumeration_mitigate: Option<bool>,
421    /// Configures the Ory Kratos Allowed Return URLs  This governs the \"selfservice.allowed_return_urls\" setting.
422    #[serde(rename = "kratos_selfservice_allowed_return_urls", skip_serializing_if = "Option::is_none")]
423    pub kratos_selfservice_allowed_return_urls: Option<Vec<String>>,
424    /// Configures the Ory Kratos Default Return URL  This governs the \"selfservice.default_browser_return_url\" setting.
425    #[serde(rename = "kratos_selfservice_default_browser_return_url", skip_serializing_if = "Option::is_none")]
426    pub kratos_selfservice_default_browser_return_url: Option<String>,
427    /// Configures the Ory Kratos Error UI URL  This governs the \"selfservice.flows.error.ui_url\" setting.
428    #[serde(rename = "kratos_selfservice_flows_error_ui_url", skip_serializing_if = "Option::is_none")]
429    pub kratos_selfservice_flows_error_ui_url: Option<String>,
430    /// Configures the Ory Kratos Login After Code Default Return URL  This governs the \"selfservice.flows.login.after.code.default_browser_return_url\" setting.
431    #[serde(rename = "kratos_selfservice_flows_login_after_code_default_browser_return_url", skip_serializing_if = "Option::is_none")]
432    pub kratos_selfservice_flows_login_after_code_default_browser_return_url: Option<String>,
433    /// Configures the Ory Kratos Login Default Return URL  This governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.
434    #[serde(rename = "kratos_selfservice_flows_login_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
435    pub kratos_selfservice_flows_login_after_default_browser_return_url: Option<String>,
436    /// Configures the Ory Kratos Login After Lookup Secret Default Return URL  This governs the \"selfservice.flows.login.after.lookup_secret.default_browser_return_url\" setting.
437    #[serde(rename = "kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url", skip_serializing_if = "Option::is_none")]
438    pub kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url: Option<String>,
439    /// Configures the Ory Kratos Login After OIDC Default Return URL  This governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.
440    #[serde(rename = "kratos_selfservice_flows_login_after_oidc_default_browser_return_url", skip_serializing_if = "Option::is_none")]
441    pub kratos_selfservice_flows_login_after_oidc_default_browser_return_url: Option<String>,
442    /// Configures the Ory Kratos Login After Passkey Default Return URL  This governs the \"selfservice.flows.login.after.passkey.default_browser_return_url\" setting.
443    #[serde(rename = "kratos_selfservice_flows_login_after_passkey_default_browser_return_url", skip_serializing_if = "Option::is_none")]
444    pub kratos_selfservice_flows_login_after_passkey_default_browser_return_url: Option<String>,
445    /// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.
446    #[serde(rename = "kratos_selfservice_flows_login_after_password_default_browser_return_url", skip_serializing_if = "Option::is_none")]
447    pub kratos_selfservice_flows_login_after_password_default_browser_return_url: Option<String>,
448    /// Configures the Ory Kratos Login After TOTP Default Return URL  This governs the \"selfservice.flows.login.after.totp.default_browser_return_url\" setting.
449    #[serde(rename = "kratos_selfservice_flows_login_after_totp_default_browser_return_url", skip_serializing_if = "Option::is_none")]
450    pub kratos_selfservice_flows_login_after_totp_default_browser_return_url: Option<String>,
451    /// Configures the Ory Kratos Login After WebAuthn Default Return URL  This governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.
452    #[serde(rename = "kratos_selfservice_flows_login_after_webauthn_default_browser_return_url", skip_serializing_if = "Option::is_none")]
453    pub kratos_selfservice_flows_login_after_webauthn_default_browser_return_url: Option<String>,
454    /// Configures the Ory Kratos Login Lifespan  This governs the \"selfservice.flows.login.lifespan\" setting.
455    #[serde(rename = "kratos_selfservice_flows_login_lifespan", skip_serializing_if = "Option::is_none")]
456    pub kratos_selfservice_flows_login_lifespan: Option<String>,
457    /// Configures the Ory Kratos Login Flow Style  This governs the \"selfservice.flows.login.style\" setting. Possible values are \"unified\" and \"identifier_first\".
458    #[serde(rename = "kratos_selfservice_flows_login_style", skip_serializing_if = "Option::is_none")]
459    pub kratos_selfservice_flows_login_style: Option<String>,
460    /// Configures the Ory Kratos Login UI URL  This governs the \"selfservice.flows.login.ui_url\" setting.
461    #[serde(rename = "kratos_selfservice_flows_login_ui_url", skip_serializing_if = "Option::is_none")]
462    pub kratos_selfservice_flows_login_ui_url: Option<String>,
463    /// Configures the Ory Kratos Logout Default Return URL  This governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.
464    #[serde(rename = "kratos_selfservice_flows_logout_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
465    pub kratos_selfservice_flows_logout_after_default_browser_return_url: Option<String>,
466    /// Configures the Ory Kratos Recovery Default Return URL  This governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.
467    #[serde(rename = "kratos_selfservice_flows_recovery_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
468    pub kratos_selfservice_flows_recovery_after_default_browser_return_url: Option<String>,
469    /// Configures the Ory Kratos Recovery Enabled Setting  This governs the \"selfservice.flows.recovery.enabled\" setting.
470    #[serde(rename = "kratos_selfservice_flows_recovery_enabled", skip_serializing_if = "Option::is_none")]
471    pub kratos_selfservice_flows_recovery_enabled: Option<bool>,
472    /// Configures the Ory Kratos Recovery Lifespan  This governs the \"selfservice.flows.recovery.lifespan\" setting.
473    #[serde(rename = "kratos_selfservice_flows_recovery_lifespan", skip_serializing_if = "Option::is_none")]
474    pub kratos_selfservice_flows_recovery_lifespan: Option<String>,
475    /// Configures whether to notify unknown recipients of a Ory Kratos recovery flow  This governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.
476    #[serde(rename = "kratos_selfservice_flows_recovery_notify_unknown_recipients", skip_serializing_if = "Option::is_none")]
477    pub kratos_selfservice_flows_recovery_notify_unknown_recipients: Option<bool>,
478    /// Configures the Ory Kratos Recovery UI URL  This governs the \"selfservice.flows.recovery.ui_url\" setting.
479    #[serde(rename = "kratos_selfservice_flows_recovery_ui_url", skip_serializing_if = "Option::is_none")]
480    pub kratos_selfservice_flows_recovery_ui_url: Option<String>,
481    /// Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")  This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
482    #[serde(rename = "kratos_selfservice_flows_recovery_use", skip_serializing_if = "Option::is_none")]
483    pub kratos_selfservice_flows_recovery_use: Option<KratosSelfserviceFlowsRecoveryUseEnum>,
484    /// Configures the Ory Kratos Registration After Code Default Return URL  This governs the \"selfservice.flows.registration.after.code.default_browser_return_url\" setting.
485    #[serde(rename = "kratos_selfservice_flows_registration_after_code_default_browser_return_url", skip_serializing_if = "Option::is_none")]
486    pub kratos_selfservice_flows_registration_after_code_default_browser_return_url: Option<String>,
487    /// Configures the Ory Kratos Registration Default Return URL  This governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.
488    #[serde(rename = "kratos_selfservice_flows_registration_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
489    pub kratos_selfservice_flows_registration_after_default_browser_return_url: Option<String>,
490    /// Configures the Ory Kratos Registration After OIDC Default Return URL  This governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.
491    #[serde(rename = "kratos_selfservice_flows_registration_after_oidc_default_browser_return_url", skip_serializing_if = "Option::is_none")]
492    pub kratos_selfservice_flows_registration_after_oidc_default_browser_return_url: Option<String>,
493    /// Configures the Ory Kratos Registration After Passkey Default Return URL  This governs the \"selfservice.flows.registration.after.passkey.default_browser_return_url\" setting.
494    #[serde(rename = "kratos_selfservice_flows_registration_after_passkey_default_browser_return_url", skip_serializing_if = "Option::is_none")]
495    pub kratos_selfservice_flows_registration_after_passkey_default_browser_return_url: Option<String>,
496    /// Configures the Ory Kratos Registration After Password Default Return URL  This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
497    #[serde(rename = "kratos_selfservice_flows_registration_after_password_default_browser_return_url", skip_serializing_if = "Option::is_none")]
498    pub kratos_selfservice_flows_registration_after_password_default_browser_return_url: Option<String>,
499    /// Configures the Ory Kratos Registration After Webauthn Default Return URL  This governs the \"selfservice.flows.registration.after.webauthn.default_browser_return_url\" setting.
500    #[serde(rename = "kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url", skip_serializing_if = "Option::is_none")]
501    pub kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url: Option<String>,
502    /// 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.
503    #[serde(rename = "kratos_selfservice_flows_registration_enable_legacy_one_step", skip_serializing_if = "Option::is_none")]
504    pub kratos_selfservice_flows_registration_enable_legacy_one_step: Option<bool>,
505    /// Configures the Whether Ory Kratos Registration is Enabled  This governs the \"selfservice.flows.registration.enabled\" setting.0
506    #[serde(rename = "kratos_selfservice_flows_registration_enabled", skip_serializing_if = "Option::is_none")]
507    pub kratos_selfservice_flows_registration_enabled: Option<bool>,
508    /// Configures the Ory Kratos Registration Lifespan  This governs the \"selfservice.flows.registration.lifespan\" setting.
509    #[serde(rename = "kratos_selfservice_flows_registration_lifespan", skip_serializing_if = "Option::is_none")]
510    pub kratos_selfservice_flows_registration_lifespan: Option<String>,
511    /// 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.
512    #[serde(rename = "kratos_selfservice_flows_registration_login_hints", skip_serializing_if = "Option::is_none")]
513    pub kratos_selfservice_flows_registration_login_hints: Option<bool>,
514    /// Configures the Ory Kratos Registration UI URL  This governs the \"selfservice.flows.registration.ui_url\" setting.
515    #[serde(rename = "kratos_selfservice_flows_registration_ui_url", skip_serializing_if = "Option::is_none")]
516    pub kratos_selfservice_flows_registration_ui_url: Option<String>,
517    /// Configures the Ory Kratos Settings Default Return URL  This governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.
518    #[serde(rename = "kratos_selfservice_flows_settings_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
519    pub kratos_selfservice_flows_settings_after_default_browser_return_url: Option<String>,
520    /// 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.
521    #[serde(rename = "kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url", skip_serializing_if = "Option::is_none")]
522    pub kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url: Option<String>,
523    /// 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.
524    #[serde(rename = "kratos_selfservice_flows_settings_after_oidc_default_browser_return_url", skip_serializing_if = "Option::is_none")]
525    pub kratos_selfservice_flows_settings_after_oidc_default_browser_return_url: Option<String>,
526    /// Configures the Ory Kratos Settings Default Return URL After Updating Passkey  This governs the \"selfservice.flows.settings.after.passkey.default_browser_return_url\" setting.
527    #[serde(rename = "kratos_selfservice_flows_settings_after_passkey_default_browser_return_url", skip_serializing_if = "Option::is_none")]
528    pub kratos_selfservice_flows_settings_after_passkey_default_browser_return_url: Option<String>,
529    /// Configures the Ory Kratos Settings Default Return URL After Updating Passwords  This governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.
530    #[serde(rename = "kratos_selfservice_flows_settings_after_password_default_browser_return_url", skip_serializing_if = "Option::is_none")]
531    pub kratos_selfservice_flows_settings_after_password_default_browser_return_url: Option<String>,
532    /// Configures the Ory Kratos Settings Default Return URL After Updating Profiles  This governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.
533    #[serde(rename = "kratos_selfservice_flows_settings_after_profile_default_browser_return_url", skip_serializing_if = "Option::is_none")]
534    pub kratos_selfservice_flows_settings_after_profile_default_browser_return_url: Option<String>,
535    /// Configures the Ory Kratos Settings Default Return URL After Updating TOTP  This governs the \"selfservice.flows.settings.after.totp.default_browser_return_url\" setting.
536    #[serde(rename = "kratos_selfservice_flows_settings_after_totp_default_browser_return_url", skip_serializing_if = "Option::is_none")]
537    pub kratos_selfservice_flows_settings_after_totp_default_browser_return_url: Option<String>,
538    /// Configures the Ory Kratos Settings Default Return URL After Updating WebAuthn  This governs the \"selfservice.flows.settings.after.webauthn.default_browser_return_url\" setting.
539    #[serde(rename = "kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url", skip_serializing_if = "Option::is_none")]
540    pub kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url: Option<String>,
541    /// Configures the Ory Kratos Settings Lifespan  This governs the \"selfservice.flows.settings.lifespan\" setting.
542    #[serde(rename = "kratos_selfservice_flows_settings_lifespan", skip_serializing_if = "Option::is_none")]
543    pub kratos_selfservice_flows_settings_lifespan: Option<String>,
544    /// Configures the Ory Kratos Settings Privileged Session Max Age  This governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.
545    #[serde(rename = "kratos_selfservice_flows_settings_privileged_session_max_age", skip_serializing_if = "Option::is_none")]
546    pub kratos_selfservice_flows_settings_privileged_session_max_age: Option<String>,
547    /// Configures the Ory Kratos Settings Required AAL  This governs the \"selfservice.flows.settings.required_aal\" setting.
548    #[serde(rename = "kratos_selfservice_flows_settings_required_aal", skip_serializing_if = "Option::is_none")]
549    pub kratos_selfservice_flows_settings_required_aal: Option<String>,
550    /// Configures the Ory Kratos Settings UI URL  This governs the \"selfservice.flows.settings.ui_url\" setting.
551    #[serde(rename = "kratos_selfservice_flows_settings_ui_url", skip_serializing_if = "Option::is_none")]
552    pub kratos_selfservice_flows_settings_ui_url: Option<String>,
553    /// Configures the Ory Kratos Verification Default Return URL  This governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.
554    #[serde(rename = "kratos_selfservice_flows_verification_after_default_browser_return_url", skip_serializing_if = "Option::is_none")]
555    pub kratos_selfservice_flows_verification_after_default_browser_return_url: Option<String>,
556    /// Configures the Ory Kratos Verification Enabled Setting  This governs the \"selfservice.flows.verification.enabled\" setting.
557    #[serde(rename = "kratos_selfservice_flows_verification_enabled", skip_serializing_if = "Option::is_none")]
558    pub kratos_selfservice_flows_verification_enabled: Option<bool>,
559    /// Configures the Ory Kratos Verification Lifespan  This governs the \"selfservice.flows.verification.lifespan\" setting.
560    #[serde(rename = "kratos_selfservice_flows_verification_lifespan", skip_serializing_if = "Option::is_none")]
561    pub kratos_selfservice_flows_verification_lifespan: Option<String>,
562    /// Configures whether to notify unknown recipients of a Ory Kratos verification flow  This governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.
563    #[serde(rename = "kratos_selfservice_flows_verification_notify_unknown_recipients", skip_serializing_if = "Option::is_none")]
564    pub kratos_selfservice_flows_verification_notify_unknown_recipients: Option<bool>,
565    /// Configures the Ory Kratos Verification UI URL  This governs the \"selfservice.flows.verification.ui_url\" setting.
566    #[serde(rename = "kratos_selfservice_flows_verification_ui_url", skip_serializing_if = "Option::is_none")]
567    pub kratos_selfservice_flows_verification_ui_url: Option<String>,
568    /// Configures the Ory Kratos Strategy to use for Verification  This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
569    #[serde(rename = "kratos_selfservice_flows_verification_use", skip_serializing_if = "Option::is_none")]
570    pub kratos_selfservice_flows_verification_use: Option<KratosSelfserviceFlowsVerificationUseEnum>,
571    /// Configures the CAPTCHA allowed domains list  This governs the \"selfservice.methods.captcha.config.allowed_domains\" setting.
572    #[serde(rename = "kratos_selfservice_methods_captcha_config_allowed_domains", skip_serializing_if = "Option::is_none")]
573    pub kratos_selfservice_methods_captcha_config_allowed_domains: Option<Vec<String>>,
574    /// Configures whether to use BYO or managed widget  Reach out to your account manager to enable this feature.  This governs the \"selfservice.methods.captcha.config.byo\" setting.
575    #[serde(rename = "kratos_selfservice_methods_captcha_config_byo", skip_serializing_if = "Option::is_none")]
576    pub kratos_selfservice_methods_captcha_config_byo: Option<bool>,
577    /// 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.  This governs the \"selfservice.methods.captcha.config.cf_turnstile.secret\" setting.
578    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_byo_secret", skip_serializing_if = "Option::is_none")]
579    pub kratos_selfservice_methods_captcha_config_cf_turnstile_byo_secret: Option<String>,
580    /// 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.  This governs the \"selfservice.methods.captcha.config.cf_turnstile.sitekey\" setting.
581    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_byo_sitekey", skip_serializing_if = "Option::is_none")]
582    pub kratos_selfservice_methods_captcha_config_cf_turnstile_byo_sitekey: Option<String>,
583    /// 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.  This governs the \"selfservice.methods.captcha.config.cf_turnstile.secret\" setting.
584    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_secret", skip_serializing_if = "Option::is_none")]
585    pub kratos_selfservice_methods_captcha_config_cf_turnstile_secret: Option<String>,
586    /// 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.  This governs the \"selfservice.methods.captcha.config.cf_turnstile.sitekey\" setting.
587    #[serde(rename = "kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey", skip_serializing_if = "Option::is_none")]
588    pub kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey: Option<String>,
589    /// Configures legacy CAPTCHA node injection behavior  Reach out to your account manager to enable this feature.  This governs the \"selfservice.methods.captcha.config.legacy_inject_node\" setting.
590    #[serde(rename = "kratos_selfservice_methods_captcha_config_legacy_inject_node", skip_serializing_if = "Option::is_none")]
591    pub kratos_selfservice_methods_captcha_config_legacy_inject_node: Option<bool>,
592    /// Configures the Ory Kratos Self-Service Methods' Captcha Enabled Setting  Reach out to your account manager to enable this feature.  This governs the \"selfservice.methods.captcha.enabled\" setting.
593    #[serde(rename = "kratos_selfservice_methods_captcha_enabled", skip_serializing_if = "Option::is_none")]
594    pub kratos_selfservice_methods_captcha_enabled: Option<bool>,
595    /// Configures the Ory Kratos Code Method's lifespan  This governs the \"selfservice.methods.code.config.lifespan\" setting.
596    #[serde(rename = "kratos_selfservice_methods_code_config_lifespan", skip_serializing_if = "Option::is_none")]
597    pub kratos_selfservice_methods_code_config_lifespan: Option<String>,
598    /// Configures the maximum number of attempts to submit a one-time code in kratos.  This governs the \"selfservice.methods.code.max_submissions\" setting.
599    #[serde(rename = "kratos_selfservice_methods_code_config_max_submissions", skip_serializing_if = "Option::is_none")]
600    pub kratos_selfservice_methods_code_config_max_submissions: Option<i64>,
601    /// Enables a fallback method required in certain legacy use cases.  This governs the \"selfservice.methods.code.config.missing_credential_fallback_enabled\" setting.
602    #[serde(rename = "kratos_selfservice_methods_code_config_missing_credential_fallback_enabled", skip_serializing_if = "Option::is_none")]
603    pub kratos_selfservice_methods_code_config_missing_credential_fallback_enabled: Option<bool>,
604    /// Configures whether Ory Kratos Code Method is enabled  This governs the \"selfservice.methods.code.enabled\" setting.
605    #[serde(rename = "kratos_selfservice_methods_code_enabled", skip_serializing_if = "Option::is_none")]
606    pub kratos_selfservice_methods_code_enabled: Option<bool>,
607    /// Configures whether the code method can be used to fulfil MFA flows  This governs the \"selfservice.methods.code.mfa_enabled\" setting.
608    #[serde(rename = "kratos_selfservice_methods_code_mfa_enabled", skip_serializing_if = "Option::is_none")]
609    pub kratos_selfservice_methods_code_mfa_enabled: Option<bool>,
610    /// Configures whether Ory Kratos Passwordless should use the Code Method  This governs the \"selfservice.methods.code.passwordless_enabled\" setting.
611    #[serde(rename = "kratos_selfservice_methods_code_passwordless_enabled", skip_serializing_if = "Option::is_none")]
612    pub kratos_selfservice_methods_code_passwordless_enabled: Option<bool>,
613    /// 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.
614    #[serde(rename = "kratos_selfservice_methods_code_passwordless_login_fallback_enabled", skip_serializing_if = "Option::is_none")]
615    pub kratos_selfservice_methods_code_passwordless_login_fallback_enabled: Option<bool>,
616    /// 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.
617    #[serde(rename = "kratos_selfservice_methods_link_config_base_url", skip_serializing_if = "Option::is_none")]
618    pub kratos_selfservice_methods_link_config_base_url: Option<String>,
619    /// Configures the Ory Kratos Link Method's lifespan  This governs the \"selfservice.methods.link.config.lifespan\" setting.
620    #[serde(rename = "kratos_selfservice_methods_link_config_lifespan", skip_serializing_if = "Option::is_none")]
621    pub kratos_selfservice_methods_link_config_lifespan: Option<String>,
622    /// Configures whether Ory Kratos Link Method is enabled  This governs the \"selfservice.methods.link.enabled\" setting.
623    #[serde(rename = "kratos_selfservice_methods_link_enabled", skip_serializing_if = "Option::is_none")]
624    pub kratos_selfservice_methods_link_enabled: Option<bool>,
625    /// Configures whether Ory Kratos TOTP Lookup Secret is enabled  This governs the \"selfservice.methods.lookup_secret.enabled\" setting.
626    #[serde(rename = "kratos_selfservice_methods_lookup_secret_enabled", skip_serializing_if = "Option::is_none")]
627    pub kratos_selfservice_methods_lookup_secret_enabled: Option<bool>,
628    /// Configures the Ory Kratos Third Party / OpenID Connect base redirect URI  This governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.
629    #[serde(rename = "kratos_selfservice_methods_oidc_config_base_redirect_uri", skip_serializing_if = "Option::is_none")]
630    pub kratos_selfservice_methods_oidc_config_base_redirect_uri: Option<String>,
631    #[serde(rename = "kratos_selfservice_methods_oidc_config_providers", skip_serializing_if = "Option::is_none")]
632    pub kratos_selfservice_methods_oidc_config_providers: Option<Vec<models::NormalizedProjectRevisionThirdPartyProvider>>,
633    /// Configures whether Ory Kratos allows auto-linking of OIDC credentials without a subject  This governs the \"selfservice.methods.oidc.enable_auto_link_policy\" setting.
634    #[serde(rename = "kratos_selfservice_methods_oidc_enable_auto_link_policy", skip_serializing_if = "Option::is_none")]
635    pub kratos_selfservice_methods_oidc_enable_auto_link_policy: Option<bool>,
636    /// Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled  This governs the \"selfservice.methods.oidc.enabled\" setting.
637    #[serde(rename = "kratos_selfservice_methods_oidc_enabled", skip_serializing_if = "Option::is_none")]
638    pub kratos_selfservice_methods_oidc_enabled: Option<bool>,
639    /// Configures the Ory Kratos Passkey RP Display Name  This governs the \"selfservice.methods.passkey.config.rp.display_name\" setting.
640    #[serde(rename = "kratos_selfservice_methods_passkey_config_rp_display_name", skip_serializing_if = "Option::is_none")]
641    pub kratos_selfservice_methods_passkey_config_rp_display_name: Option<String>,
642    /// Configures the Ory Kratos Passkey RP ID  This governs the \"selfservice.methods.passkey.config.rp.id\" setting.
643    #[serde(rename = "kratos_selfservice_methods_passkey_config_rp_id", skip_serializing_if = "Option::is_none")]
644    pub kratos_selfservice_methods_passkey_config_rp_id: Option<String>,
645    /// Configures the Ory Kratos Passkey RP Origins  This governs the \"selfservice.methods.passkey.config.rp.origins\" setting.
646    #[serde(rename = "kratos_selfservice_methods_passkey_config_rp_origins", skip_serializing_if = "Option::is_none")]
647    pub kratos_selfservice_methods_passkey_config_rp_origins: Option<Vec<String>>,
648    /// Configures whether Ory Kratos Passkey authentication is enabled  This governs the \"selfservice.methods.passkey.enabled\" setting.
649    #[serde(rename = "kratos_selfservice_methods_passkey_enabled", skip_serializing_if = "Option::is_none")]
650    pub kratos_selfservice_methods_passkey_enabled: Option<bool>,
651    /// Configures whether Ory Kratos Password HIBP Checks is enabled  This governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.
652    #[serde(rename = "kratos_selfservice_methods_password_config_haveibeenpwned_enabled", skip_serializing_if = "Option::is_none")]
653    pub kratos_selfservice_methods_password_config_haveibeenpwned_enabled: Option<bool>,
654    /// Configures whether Ory Kratos Password should disable the similarity policy.  This governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.
655    #[serde(rename = "kratos_selfservice_methods_password_config_identifier_similarity_check_enabled", skip_serializing_if = "Option::is_none")]
656    pub kratos_selfservice_methods_password_config_identifier_similarity_check_enabled: Option<bool>,
657    /// Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors  This governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.
658    #[serde(rename = "kratos_selfservice_methods_password_config_ignore_network_errors", skip_serializing_if = "Option::is_none")]
659    pub kratos_selfservice_methods_password_config_ignore_network_errors: Option<bool>,
660    /// Configures Ory Kratos Password Max Breaches Detection  This governs the \"selfservice.methods.password.config.max_breaches\" setting.
661    #[serde(rename = "kratos_selfservice_methods_password_config_max_breaches", skip_serializing_if = "Option::is_none")]
662    pub kratos_selfservice_methods_password_config_max_breaches: Option<i64>,
663    /// Configures the minimum length of passwords.  This governs the \"selfservice.methods.password.config.min_password_length\" setting.
664    #[serde(rename = "kratos_selfservice_methods_password_config_min_password_length", skip_serializing_if = "Option::is_none")]
665    pub kratos_selfservice_methods_password_config_min_password_length: Option<i64>,
666    /// Configures whether Ory Kratos Password Method is enabled  This governs the \"selfservice.methods.password.enabled\" setting.
667    #[serde(rename = "kratos_selfservice_methods_password_enabled", skip_serializing_if = "Option::is_none")]
668    pub kratos_selfservice_methods_password_enabled: Option<bool>,
669    /// Configures whether Ory Kratos Profile Method is enabled  This governs the \"selfservice.methods.profile.enabled\" setting.
670    #[serde(rename = "kratos_selfservice_methods_profile_enabled", skip_serializing_if = "Option::is_none")]
671    pub kratos_selfservice_methods_profile_enabled: Option<bool>,
672    #[serde(rename = "kratos_selfservice_methods_saml_config_providers", skip_serializing_if = "Option::is_none")]
673    pub kratos_selfservice_methods_saml_config_providers: Option<Vec<models::NormalizedProjectRevisionSamlProvider>>,
674    /// Configures whether Ory Kratos SAML Login is enabled  This governs the \"selfservice.methods.saml.enabled\" setting.
675    #[serde(rename = "kratos_selfservice_methods_saml_enabled", skip_serializing_if = "Option::is_none")]
676    pub kratos_selfservice_methods_saml_enabled: Option<bool>,
677    /// Configures Ory Kratos TOTP Issuer  This governs the \"selfservice.methods.totp.config.issuer\" setting.
678    #[serde(rename = "kratos_selfservice_methods_totp_config_issuer", skip_serializing_if = "Option::is_none")]
679    pub kratos_selfservice_methods_totp_config_issuer: Option<String>,
680    /// Configures whether Ory Kratos TOTP Method is enabled  This governs the \"selfservice.methods.totp.enabled\" setting.
681    #[serde(rename = "kratos_selfservice_methods_totp_enabled", skip_serializing_if = "Option::is_none")]
682    pub kratos_selfservice_methods_totp_enabled: Option<bool>,
683    /// Configures whether Ory Kratos Webauthn is used for passwordless flows  This governs the \"selfservice.methods.webauthn.config.passwordless\" setting.
684    #[serde(rename = "kratos_selfservice_methods_webauthn_config_passwordless", skip_serializing_if = "Option::is_none")]
685    pub kratos_selfservice_methods_webauthn_config_passwordless: Option<bool>,
686    /// Configures the Ory Kratos Webauthn RP Display Name  This governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.
687    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_display_name", skip_serializing_if = "Option::is_none")]
688    pub kratos_selfservice_methods_webauthn_config_rp_display_name: Option<String>,
689    /// 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.
690    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_icon", skip_serializing_if = "Option::is_none")]
691    pub kratos_selfservice_methods_webauthn_config_rp_icon: Option<String>,
692    /// Configures the Ory Kratos Webauthn RP ID  This governs the \"selfservice.methods.webauthn.config.rp.id\" setting.
693    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_id", skip_serializing_if = "Option::is_none")]
694    pub kratos_selfservice_methods_webauthn_config_rp_id: Option<String>,
695    /// Configures the Ory Kratos Webauthn RP Origins  This governs the \"selfservice.methods.webauthn.config.rp.origins\" setting.
696    #[serde(rename = "kratos_selfservice_methods_webauthn_config_rp_origins", skip_serializing_if = "Option::is_none")]
697    pub kratos_selfservice_methods_webauthn_config_rp_origins: Option<Vec<String>>,
698    /// Configures whether Ory Kratos Webauthn is enabled  This governs the \"selfservice.methods.webauthn.enabled\" setting.
699    #[serde(rename = "kratos_selfservice_methods_webauthn_enabled", skip_serializing_if = "Option::is_none")]
700    pub kratos_selfservice_methods_webauthn_enabled: Option<bool>,
701    /// Configures the Ory Kratos Session Cookie Persistent Attribute  This governs the \"session.cookie.persistent\" setting.
702    #[serde(rename = "kratos_session_cookie_persistent", skip_serializing_if = "Option::is_none")]
703    pub kratos_session_cookie_persistent: Option<bool>,
704    /// Configures the Ory Kratos Session Cookie SameSite Attribute  This governs the \"session.cookie.same_site\" setting.
705    #[serde(rename = "kratos_session_cookie_same_site", skip_serializing_if = "Option::is_none")]
706    pub kratos_session_cookie_same_site: Option<String>,
707    /// Configures the Ory Kratos Session Lifespan  This governs the \"session.lifespan\" setting.
708    #[serde(rename = "kratos_session_lifespan", skip_serializing_if = "Option::is_none")]
709    pub kratos_session_lifespan: Option<String>,
710    /// Configures the Ory Kratos Session Whoami AAL requirement  This governs the \"session.whoami.required_aal\" setting.
711    #[serde(rename = "kratos_session_whoami_required_aal", skip_serializing_if = "Option::is_none")]
712    pub kratos_session_whoami_required_aal: Option<String>,
713    #[serde(rename = "kratos_session_whoami_tokenizer_templates", skip_serializing_if = "Option::is_none")]
714    pub kratos_session_whoami_tokenizer_templates: Option<Vec<models::NormalizedProjectRevisionTokenizerTemplate>>,
715    /// The project's name.
716    #[serde(rename = "name")]
717    pub name: String,
718    #[serde(rename = "organizations", skip_serializing_if = "Option::is_none")]
719    pub organizations: Option<Vec<models::Organization>>,
720    /// The Revision's Project ID
721    #[serde(rename = "project_id", skip_serializing_if = "Option::is_none")]
722    pub project_id: Option<String>,
723    #[serde(rename = "project_revision_hooks", skip_serializing_if = "Option::is_none")]
724    pub project_revision_hooks: Option<Vec<models::NormalizedProjectRevisionHook>>,
725    #[serde(rename = "scim_clients", skip_serializing_if = "Option::is_none")]
726    pub scim_clients: Option<Vec<models::NormalizedProjectRevisionScimClient>>,
727    /// Configures the CORS Allowed Origins on admin APIs  This governs the \"serve.admin.cors.allowed_origins\" setting.
728    #[serde(rename = "serve_admin_cors_allowed_origins", skip_serializing_if = "Option::is_none")]
729    pub serve_admin_cors_allowed_origins: Option<Vec<String>>,
730    /// Enable CORS headers on all admin APIs  This governs the \"serve.admin.cors.enabled\" setting.
731    #[serde(rename = "serve_admin_cors_enabled", skip_serializing_if = "Option::is_none")]
732    pub serve_admin_cors_enabled: Option<bool>,
733    /// Configures the CORS Allowed Origins on public APIs  This governs the \"serve.public.cors.allowed_origins\" setting.
734    #[serde(rename = "serve_public_cors_allowed_origins", skip_serializing_if = "Option::is_none")]
735    pub serve_public_cors_allowed_origins: Option<Vec<String>>,
736    /// Enable CORS headers on all public APIs  This governs the \"serve.public.cors.enabled\" setting.
737    #[serde(rename = "serve_public_cors_enabled", skip_serializing_if = "Option::is_none")]
738    pub serve_public_cors_enabled: Option<bool>,
739    /// Whether the project should employ strict security measures. Setting this to true is recommended for going into production.
740    #[serde(rename = "strict_security", skip_serializing_if = "Option::is_none")]
741    pub strict_security: Option<bool>,
742    /// Last Time Project's Revision was Updated
743    #[serde(rename = "updated_at", skip_serializing_if = "Option::is_none")]
744    pub updated_at: Option<String>,
745}
746
747impl NormalizedProjectRevision {
748    pub fn new(name: String) -> NormalizedProjectRevision {
749        NormalizedProjectRevision {
750            account_experience_custom_translations: None,
751            account_experience_default_locale: None,
752            account_experience_enabled_locales: None,
753            account_experience_favicon_dark: None,
754            account_experience_favicon_light: None,
755            account_experience_hide_ory_branding: None,
756            account_experience_hide_registration_link: None,
757            account_experience_locale_behavior: None,
758            account_experience_logo_dark: None,
759            account_experience_logo_light: None,
760            account_experience_theme_variables_dark: None,
761            account_experience_theme_variables_light: None,
762            created_at: None,
763            disable_account_experience_welcome_screen: None,
764            enable_ax_v2: None,
765            hydra_oauth2_allowed_top_level_claims: None,
766            hydra_oauth2_client_credentials_default_grant_allowed_scope: None,
767            hydra_oauth2_exclude_not_before_claim: None,
768            hydra_oauth2_grant_jwt_iat_optional: None,
769            hydra_oauth2_grant_jwt_jti_optional: None,
770            hydra_oauth2_grant_jwt_max_ttl: None,
771            hydra_oauth2_grant_refresh_token_rotation_grace_period: None,
772            hydra_oauth2_grant_refresh_token_rotation_grace_reuse_count: None,
773            hydra_oauth2_mirror_top_level_claims: None,
774            hydra_oauth2_pkce_enforced: None,
775            hydra_oauth2_pkce_enforced_for_public_clients: None,
776            hydra_oauth2_preserve_ext_claims: None,
777            hydra_oauth2_refresh_token_hook: None,
778            hydra_oauth2_token_hook: None,
779            hydra_oauth2_token_prefix: None,
780            hydra_oidc_dynamic_client_registration_default_scope: None,
781            hydra_oidc_dynamic_client_registration_enabled: None,
782            hydra_oidc_subject_identifiers_pairwise_salt: None,
783            hydra_oidc_subject_identifiers_supported_types: None,
784            hydra_secrets_cookie: None,
785            hydra_secrets_pagination: None,
786            hydra_secrets_system: None,
787            hydra_serve_cookies_same_site_legacy_workaround: None,
788            hydra_serve_cookies_same_site_mode: None,
789            hydra_strategies_access_token: None,
790            hydra_strategies_jwt_scope_claim: None,
791            hydra_strategies_scope: None,
792            hydra_ttl_access_token: None,
793            hydra_ttl_auth_code: None,
794            hydra_ttl_id_token: None,
795            hydra_ttl_login_consent_request: None,
796            hydra_ttl_refresh_token: None,
797            hydra_urls_consent: None,
798            hydra_urls_error: None,
799            hydra_urls_login: None,
800            hydra_urls_logout: None,
801            hydra_urls_post_logout_redirect: None,
802            hydra_urls_registration: None,
803            hydra_urls_self_issuer: None,
804            hydra_webfinger_jwks_broadcast_keys: None,
805            hydra_webfinger_oidc_discovery_auth_url: None,
806            hydra_webfinger_oidc_discovery_client_registration_url: None,
807            hydra_webfinger_oidc_discovery_jwks_url: None,
808            hydra_webfinger_oidc_discovery_supported_claims: None,
809            hydra_webfinger_oidc_discovery_supported_scope: None,
810            hydra_webfinger_oidc_discovery_token_url: None,
811            hydra_webfinger_oidc_discovery_userinfo_url: None,
812            id: None,
813            keto_namespace_configuration: None,
814            keto_namespaces: None,
815            keto_secrets_pagination: None,
816            kratos_cookies_same_site: None,
817            kratos_courier_channels: None,
818            kratos_courier_delivery_strategy: None,
819            kratos_courier_http_request_config_auth_api_key_in: None,
820            kratos_courier_http_request_config_auth_api_key_name: None,
821            kratos_courier_http_request_config_auth_api_key_value: None,
822            kratos_courier_http_request_config_auth_basic_auth_password: None,
823            kratos_courier_http_request_config_auth_basic_auth_user: None,
824            kratos_courier_http_request_config_auth_type: None,
825            kratos_courier_http_request_config_body: None,
826            kratos_courier_http_request_config_headers: None,
827            kratos_courier_http_request_config_method: None,
828            kratos_courier_http_request_config_url: None,
829            kratos_courier_smtp_connection_uri: None,
830            kratos_courier_smtp_from_address: None,
831            kratos_courier_smtp_from_name: None,
832            kratos_courier_smtp_headers: None,
833            kratos_courier_smtp_local_name: None,
834            kratos_courier_templates_login_code_valid_email_body_html: None,
835            kratos_courier_templates_login_code_valid_email_body_plaintext: None,
836            kratos_courier_templates_login_code_valid_email_subject: None,
837            kratos_courier_templates_login_code_valid_sms_body_plaintext: None,
838            kratos_courier_templates_recovery_code_invalid_email_body_html: None,
839            kratos_courier_templates_recovery_code_invalid_email_body_plaintext: None,
840            kratos_courier_templates_recovery_code_invalid_email_subject: None,
841            kratos_courier_templates_recovery_code_valid_email_body_html: None,
842            kratos_courier_templates_recovery_code_valid_email_body_plaintext: None,
843            kratos_courier_templates_recovery_code_valid_email_subject: None,
844            kratos_courier_templates_recovery_invalid_email_body_html: None,
845            kratos_courier_templates_recovery_invalid_email_body_plaintext: None,
846            kratos_courier_templates_recovery_invalid_email_subject: None,
847            kratos_courier_templates_recovery_valid_email_body_html: None,
848            kratos_courier_templates_recovery_valid_email_body_plaintext: None,
849            kratos_courier_templates_recovery_valid_email_subject: None,
850            kratos_courier_templates_registration_code_valid_email_body_html: None,
851            kratos_courier_templates_registration_code_valid_email_body_plaintext: None,
852            kratos_courier_templates_registration_code_valid_email_subject: None,
853            kratos_courier_templates_registration_code_valid_sms_body_plaintext: None,
854            kratos_courier_templates_verification_code_invalid_email_body_html: None,
855            kratos_courier_templates_verification_code_invalid_email_body_plaintext: None,
856            kratos_courier_templates_verification_code_invalid_email_subject: None,
857            kratos_courier_templates_verification_code_valid_email_body_html: None,
858            kratos_courier_templates_verification_code_valid_email_body_plaintext: None,
859            kratos_courier_templates_verification_code_valid_email_subject: None,
860            kratos_courier_templates_verification_code_valid_sms_body_plaintext: None,
861            kratos_courier_templates_verification_invalid_email_body_html: None,
862            kratos_courier_templates_verification_invalid_email_body_plaintext: None,
863            kratos_courier_templates_verification_invalid_email_subject: None,
864            kratos_courier_templates_verification_valid_email_body_html: None,
865            kratos_courier_templates_verification_valid_email_body_plaintext: None,
866            kratos_courier_templates_verification_valid_email_subject: None,
867            kratos_feature_flags_cacheable_sessions: None,
868            kratos_feature_flags_cacheable_sessions_max_age: None,
869            kratos_feature_flags_choose_recovery_address: None,
870            kratos_feature_flags_faster_session_extend: None,
871            kratos_feature_flags_legacy_continue_with_verification_ui: None,
872            kratos_feature_flags_legacy_oidc_registration_node_group: None,
873            kratos_feature_flags_legacy_require_verified_login_error: None,
874            kratos_feature_flags_password_profile_registration_node_group: None,
875            kratos_feature_flags_use_continue_with_transitions: None,
876            kratos_identity_schemas: None,
877            kratos_oauth2_provider_headers: None,
878            kratos_oauth2_provider_override_return_to: None,
879            kratos_oauth2_provider_url: None,
880            kratos_preview_default_read_consistency_level: None,
881            kratos_secrets_cipher: None,
882            kratos_secrets_cookie: None,
883            kratos_secrets_default: None,
884            kratos_secrets_pagination: None,
885            kratos_security_account_enumeration_mitigate: None,
886            kratos_selfservice_allowed_return_urls: None,
887            kratos_selfservice_default_browser_return_url: None,
888            kratos_selfservice_flows_error_ui_url: None,
889            kratos_selfservice_flows_login_after_code_default_browser_return_url: None,
890            kratos_selfservice_flows_login_after_default_browser_return_url: None,
891            kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url: None,
892            kratos_selfservice_flows_login_after_oidc_default_browser_return_url: None,
893            kratos_selfservice_flows_login_after_passkey_default_browser_return_url: None,
894            kratos_selfservice_flows_login_after_password_default_browser_return_url: None,
895            kratos_selfservice_flows_login_after_totp_default_browser_return_url: None,
896            kratos_selfservice_flows_login_after_webauthn_default_browser_return_url: None,
897            kratos_selfservice_flows_login_lifespan: None,
898            kratos_selfservice_flows_login_style: None,
899            kratos_selfservice_flows_login_ui_url: None,
900            kratos_selfservice_flows_logout_after_default_browser_return_url: None,
901            kratos_selfservice_flows_recovery_after_default_browser_return_url: None,
902            kratos_selfservice_flows_recovery_enabled: None,
903            kratos_selfservice_flows_recovery_lifespan: None,
904            kratos_selfservice_flows_recovery_notify_unknown_recipients: None,
905            kratos_selfservice_flows_recovery_ui_url: None,
906            kratos_selfservice_flows_recovery_use: None,
907            kratos_selfservice_flows_registration_after_code_default_browser_return_url: None,
908            kratos_selfservice_flows_registration_after_default_browser_return_url: None,
909            kratos_selfservice_flows_registration_after_oidc_default_browser_return_url: None,
910            kratos_selfservice_flows_registration_after_passkey_default_browser_return_url: None,
911            kratos_selfservice_flows_registration_after_password_default_browser_return_url: None,
912            kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url: None,
913            kratos_selfservice_flows_registration_enable_legacy_one_step: None,
914            kratos_selfservice_flows_registration_enabled: None,
915            kratos_selfservice_flows_registration_lifespan: None,
916            kratos_selfservice_flows_registration_login_hints: None,
917            kratos_selfservice_flows_registration_ui_url: None,
918            kratos_selfservice_flows_settings_after_default_browser_return_url: None,
919            kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url: None,
920            kratos_selfservice_flows_settings_after_oidc_default_browser_return_url: None,
921            kratos_selfservice_flows_settings_after_passkey_default_browser_return_url: None,
922            kratos_selfservice_flows_settings_after_password_default_browser_return_url: None,
923            kratos_selfservice_flows_settings_after_profile_default_browser_return_url: None,
924            kratos_selfservice_flows_settings_after_totp_default_browser_return_url: None,
925            kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url: None,
926            kratos_selfservice_flows_settings_lifespan: None,
927            kratos_selfservice_flows_settings_privileged_session_max_age: None,
928            kratos_selfservice_flows_settings_required_aal: None,
929            kratos_selfservice_flows_settings_ui_url: None,
930            kratos_selfservice_flows_verification_after_default_browser_return_url: None,
931            kratos_selfservice_flows_verification_enabled: None,
932            kratos_selfservice_flows_verification_lifespan: None,
933            kratos_selfservice_flows_verification_notify_unknown_recipients: None,
934            kratos_selfservice_flows_verification_ui_url: None,
935            kratos_selfservice_flows_verification_use: None,
936            kratos_selfservice_methods_captcha_config_allowed_domains: None,
937            kratos_selfservice_methods_captcha_config_byo: None,
938            kratos_selfservice_methods_captcha_config_cf_turnstile_byo_secret: None,
939            kratos_selfservice_methods_captcha_config_cf_turnstile_byo_sitekey: None,
940            kratos_selfservice_methods_captcha_config_cf_turnstile_secret: None,
941            kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey: None,
942            kratos_selfservice_methods_captcha_config_legacy_inject_node: None,
943            kratos_selfservice_methods_captcha_enabled: None,
944            kratos_selfservice_methods_code_config_lifespan: None,
945            kratos_selfservice_methods_code_config_max_submissions: None,
946            kratos_selfservice_methods_code_config_missing_credential_fallback_enabled: None,
947            kratos_selfservice_methods_code_enabled: None,
948            kratos_selfservice_methods_code_mfa_enabled: None,
949            kratos_selfservice_methods_code_passwordless_enabled: None,
950            kratos_selfservice_methods_code_passwordless_login_fallback_enabled: None,
951            kratos_selfservice_methods_link_config_base_url: None,
952            kratos_selfservice_methods_link_config_lifespan: None,
953            kratos_selfservice_methods_link_enabled: None,
954            kratos_selfservice_methods_lookup_secret_enabled: None,
955            kratos_selfservice_methods_oidc_config_base_redirect_uri: None,
956            kratos_selfservice_methods_oidc_config_providers: None,
957            kratos_selfservice_methods_oidc_enable_auto_link_policy: None,
958            kratos_selfservice_methods_oidc_enabled: None,
959            kratos_selfservice_methods_passkey_config_rp_display_name: None,
960            kratos_selfservice_methods_passkey_config_rp_id: None,
961            kratos_selfservice_methods_passkey_config_rp_origins: None,
962            kratos_selfservice_methods_passkey_enabled: None,
963            kratos_selfservice_methods_password_config_haveibeenpwned_enabled: None,
964            kratos_selfservice_methods_password_config_identifier_similarity_check_enabled: None,
965            kratos_selfservice_methods_password_config_ignore_network_errors: None,
966            kratos_selfservice_methods_password_config_max_breaches: None,
967            kratos_selfservice_methods_password_config_min_password_length: None,
968            kratos_selfservice_methods_password_enabled: None,
969            kratos_selfservice_methods_profile_enabled: None,
970            kratos_selfservice_methods_saml_config_providers: None,
971            kratos_selfservice_methods_saml_enabled: None,
972            kratos_selfservice_methods_totp_config_issuer: None,
973            kratos_selfservice_methods_totp_enabled: None,
974            kratos_selfservice_methods_webauthn_config_passwordless: None,
975            kratos_selfservice_methods_webauthn_config_rp_display_name: None,
976            kratos_selfservice_methods_webauthn_config_rp_icon: None,
977            kratos_selfservice_methods_webauthn_config_rp_id: None,
978            kratos_selfservice_methods_webauthn_config_rp_origins: None,
979            kratos_selfservice_methods_webauthn_enabled: None,
980            kratos_session_cookie_persistent: None,
981            kratos_session_cookie_same_site: None,
982            kratos_session_lifespan: None,
983            kratos_session_whoami_required_aal: None,
984            kratos_session_whoami_tokenizer_templates: None,
985            name,
986            organizations: None,
987            project_id: None,
988            project_revision_hooks: None,
989            scim_clients: None,
990            serve_admin_cors_allowed_origins: None,
991            serve_admin_cors_enabled: None,
992            serve_public_cors_allowed_origins: None,
993            serve_public_cors_enabled: None,
994            strict_security: None,
995            updated_at: None,
996        }
997    }
998}
999/// Defines access token type  This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt
1000#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
1001pub enum HydraStrategiesAccessTokenEnum {
1002    #[serde(rename = "opaque")]
1003    Opaque,
1004    #[serde(rename = "jwt")]
1005    Jwt,
1006}
1007
1008impl Default for HydraStrategiesAccessTokenEnum {
1009    fn default() -> HydraStrategiesAccessTokenEnum {
1010        Self::Opaque
1011    }
1012}
1013/// 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
1014#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
1015pub enum HydraStrategiesJwtScopeClaimEnum {
1016    #[serde(rename = "list")]
1017    List,
1018    #[serde(rename = "string")]
1019    String,
1020    #[serde(rename = "both")]
1021    Both,
1022}
1023
1024impl Default for HydraStrategiesJwtScopeClaimEnum {
1025    fn default() -> HydraStrategiesJwtScopeClaimEnum {
1026        Self::List
1027    }
1028}
1029/// 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
1030#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
1031pub enum HydraStrategiesScopeEnum {
1032    #[serde(rename = "exact")]
1033    Exact,
1034    #[serde(rename = "wildcard")]
1035    Wildcard,
1036}
1037
1038impl Default for HydraStrategiesScopeEnum {
1039    fn default() -> HydraStrategiesScopeEnum {
1040        Self::Exact
1041    }
1042}
1043/// Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")  This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
1044#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
1045pub enum KratosSelfserviceFlowsRecoveryUseEnum {
1046    #[serde(rename = "link")]
1047    Link,
1048    #[serde(rename = "code")]
1049    Code,
1050}
1051
1052impl Default for KratosSelfserviceFlowsRecoveryUseEnum {
1053    fn default() -> KratosSelfserviceFlowsRecoveryUseEnum {
1054        Self::Link
1055    }
1056}
1057/// Configures the Ory Kratos Strategy to use for Verification  This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
1058#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
1059pub enum KratosSelfserviceFlowsVerificationUseEnum {
1060    #[serde(rename = "link")]
1061    Link,
1062    #[serde(rename = "code")]
1063    Code,
1064}
1065
1066impl Default for KratosSelfserviceFlowsVerificationUseEnum {
1067    fn default() -> KratosSelfserviceFlowsVerificationUseEnum {
1068        Self::Link
1069    }
1070}
1071