bitwarden_api_api/models/
web_authn_login_credential_create_request_model.rs

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
48
49
50
51
52
53
/*
 * 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;

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebAuthnLoginCredentialCreateRequestModel {
    #[serde(rename = "deviceResponse")]
    pub device_response: Box<models::AuthenticatorAttestationRawResponse>,
    #[serde(rename = "name")]
    pub name: String,
    #[serde(rename = "token")]
    pub token: String,
    #[serde(rename = "supportsPrf")]
    pub supports_prf: bool,
    #[serde(rename = "encryptedUserKey", skip_serializing_if = "Option::is_none")]
    pub encrypted_user_key: Option<String>,
    #[serde(rename = "encryptedPublicKey", skip_serializing_if = "Option::is_none")]
    pub encrypted_public_key: Option<String>,
    #[serde(
        rename = "encryptedPrivateKey",
        skip_serializing_if = "Option::is_none"
    )]
    pub encrypted_private_key: Option<String>,
}

impl WebAuthnLoginCredentialCreateRequestModel {
    pub fn new(
        device_response: models::AuthenticatorAttestationRawResponse,
        name: String,
        token: String,
        supports_prf: bool,
    ) -> WebAuthnLoginCredentialCreateRequestModel {
        WebAuthnLoginCredentialCreateRequestModel {
            device_response: Box::new(device_response),
            name,
            token,
            supports_prf,
            encrypted_user_key: None,
            encrypted_public_key: None,
            encrypted_private_key: None,
        }
    }
}