Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Max KvR committed Mar 25, 2024
1 parent 2d99722 commit f67db6e
Show file tree
Hide file tree
Showing 589 changed files with 595 additions and 595 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fusionauth-rust-client"
version = "2.0.1"
version = "2.0.2"
authors = ["OpenAPI Generator team and contributors"]
description = "This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls."
license = "Apache-2.0"
Expand All @@ -16,5 +16,5 @@ serde_json = "^1.0"
url = "^2.2"
uuid = { version = "^1.0", features = ["serde", "v4"] }
[dependencies.reqwest]
version = "0.11.25"
version = "^0.11"
features = ["json", "multipart"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fu

This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client.

- API version: 1.49.1
- Package version: 2.0.1
- API version: 1.49.2
- Package version: 2.0.2
- Build package: `org.openapitools.codegen.languages.RustClientCodegen`


Expand Down
2 changes: 1 addition & 1 deletion api_version.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 1.49.1
version: 1.49.2
4 changes: 2 additions & 2 deletions docs/DefaultApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ Name | Type | Description | Required | Notes

## comment_on_user_with_id

> comment_on_user_with_id(x_fusion_auth_tenant_id, user_comment_request)
> models::UserCommentResponse comment_on_user_with_id(x_fusion_auth_tenant_id, user_comment_request)

Adds a comment to the user's account.
Expand All @@ -553,7 +553,7 @@ Name | Type | Description | Required | Notes

### Return type

(empty response body)
[**models::UserCommentResponse**](UserCommentResponse.md)

### Authorization

Expand Down
4 changes: 2 additions & 2 deletions src/apis/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down Expand Up @@ -41,7 +41,7 @@ impl Default for Configuration {
fn default() -> Self {
Configuration {
base_path: "http://localhost:9011".to_owned(),
user_agent: Some("OpenAPI-Generator/1.49.1/rust".to_owned()),
user_agent: Some("OpenAPI-Generator/1.49.2/rust".to_owned()),
client: reqwest::Client::new(),
basic_auth: None,
oauth_access_token: None,
Expand Down
6 changes: 3 additions & 3 deletions src/apis/default_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down Expand Up @@ -2618,7 +2618,7 @@ pub async fn check_change_password_using_id_with_id(configuration: &configuratio
}

/// Adds a comment to the user's account.
pub async fn comment_on_user_with_id(configuration: &configuration::Configuration, x_fusion_auth_tenant_id: Option<&str>, user_comment_request: Option<models::UserCommentRequest>) -> Result<(), Error<CommentOnUserWithIdError>> {
pub async fn comment_on_user_with_id(configuration: &configuration::Configuration, x_fusion_auth_tenant_id: Option<&str>, user_comment_request: Option<models::UserCommentRequest>) -> Result<models::UserCommentResponse, Error<CommentOnUserWithIdError>> {
let local_var_configuration = configuration;

let local_var_client = &local_var_configuration.client;
Expand Down Expand Up @@ -2649,7 +2649,7 @@ pub async fn comment_on_user_with_id(configuration: &configuration::Configuratio
let local_var_content = local_var_resp.text().await?;

if !local_var_status.is_client_error() && !local_var_status.is_server_error() {
Ok(())
serde_json::from_str(&local_var_content).map_err(Error::from)
} else {
let local_var_entity: Option<CommentOnUserWithIdError> = serde_json::from_str(&local_var_content).ok();
let local_var_error = ResponseContent { status: local_var_status, content: local_var_content, entity: local_var_entity };
Expand Down
2 changes: 1 addition & 1 deletion src/models/access_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/action_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/action_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/action_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/algorithm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/api_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/api_key_meta_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/api_key_permissions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/api_key_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/api_key_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/apple_application_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/apple_identity_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_access_control_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_email_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_form_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_multi_factor_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_multi_factor_trust_policy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_registration_delete_policy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_role.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_search_criteria.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_search_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_search_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_unverified_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_web_authn_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/application_web_authn_workflow_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/attachment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/attestation_conveyance_preference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/attestation_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/audit_log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/audit_log_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
*
* The version of the OpenAPI document: 1.49.1
* The version of the OpenAPI document: 1.49.2
*
* Generated by: https://openapi-generator.tech
*/
Expand Down
Loading

0 comments on commit f67db6e

Please sign in to comment.