langfuse-client-base 0.12.0

Auto-generated Langfuse API client from OpenAPI specification
Documentation
/*
 * langfuse
 *
 * ## Authentication  Authenticate with the API using [Basic Auth](https://en.wikipedia.org/wiki/Basic_access_authentication), get API keys in the project settings:  - username: Langfuse Public Key - password: Langfuse Secret Key  ## Exports  - OpenAPI spec: https://cloud.langfuse.com/generated/api/openapi.yml
 *
 * The version of the OpenAPI document:
 *
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct ServiceProviderConfig {
    #[serde(rename = "schemas")]
    pub schemas: Vec<String>,
    #[serde(rename = "documentationUri")]
    pub documentation_uri: String,
    #[serde(rename = "patch")]
    pub patch: Box<models::ScimFeatureSupport>,
    #[serde(rename = "bulk")]
    pub bulk: Box<models::BulkConfig>,
    #[serde(rename = "filter")]
    pub filter: Box<models::FilterConfig>,
    #[serde(rename = "changePassword")]
    pub change_password: Box<models::ScimFeatureSupport>,
    #[serde(rename = "sort")]
    pub sort: Box<models::ScimFeatureSupport>,
    #[serde(rename = "etag")]
    pub etag: Box<models::ScimFeatureSupport>,
    #[serde(rename = "authenticationSchemes")]
    pub authentication_schemes: Vec<models::AuthenticationScheme>,
    #[serde(rename = "meta")]
    pub meta: Box<models::ResourceMeta>,
}

impl ServiceProviderConfig {
    pub fn new(
        schemas: Vec<String>,
        documentation_uri: String,
        patch: models::ScimFeatureSupport,
        bulk: models::BulkConfig,
        filter: models::FilterConfig,
        change_password: models::ScimFeatureSupport,
        sort: models::ScimFeatureSupport,
        etag: models::ScimFeatureSupport,
        authentication_schemes: Vec<models::AuthenticationScheme>,
        meta: models::ResourceMeta,
    ) -> ServiceProviderConfig {
        ServiceProviderConfig {
            schemas,
            documentation_uri,
            patch: Box::new(patch),
            bulk: Box::new(bulk),
            filter: Box::new(filter),
            change_password: Box::new(change_password),
            sort: Box::new(sort),
            etag: Box::new(etag),
            authentication_schemes,
            meta: Box::new(meta),
        }
    }
}