bitwarden-api-api 3.0.0

Api bindings for the Bitwarden API.
Documentation
/*
 * Bitwarden Internal API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: latest
 *
 * Generated by: https://openapi-generator.tech
 */

use serde::{Deserialize, Serialize};

use crate::models;

/// MasterPasswordAuthenticationDataRequestModel : Use this datatype when interfacing with requests
/// to create a separation of concern. See
/// Bit.Core.KeyManagement.Models.Data.MasterPasswordAuthenticationData to use for commands,
/// queries, services.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct MasterPasswordAuthenticationDataRequestModel {
    #[serde(rename = "kdf", alias = "Kdf")]
    pub kdf: Box<models::KdfRequestModel>,
    #[serde(
        rename = "masterPasswordAuthenticationHash",
        alias = "MasterPasswordAuthenticationHash"
    )]
    pub master_password_authentication_hash: String,
    #[serde(rename = "salt", alias = "Salt")]
    pub salt: String,
}

impl MasterPasswordAuthenticationDataRequestModel {
    /// Use this datatype when interfacing with requests to create a separation of concern. See
    /// Bit.Core.KeyManagement.Models.Data.MasterPasswordAuthenticationData to use for commands,
    /// queries, services.
    pub fn new(
        kdf: models::KdfRequestModel,
        master_password_authentication_hash: String,
        salt: String,
    ) -> MasterPasswordAuthenticationDataRequestModel {
        MasterPasswordAuthenticationDataRequestModel {
            kdf: Box::new(kdf),
            master_password_authentication_hash,
            salt,
        }
    }
}