1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* 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,
}
}
}