bitwarden_api_api/models/
payment_response_model.rs1use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct PaymentResponseModel {
17 #[serde(
18 rename = "object",
19 alias = "Object",
20 skip_serializing_if = "Option::is_none"
21 )]
22 pub object: Option<String>,
23 #[serde(
24 rename = "userProfile",
25 alias = "UserProfile",
26 skip_serializing_if = "Option::is_none"
27 )]
28 pub user_profile: Option<Box<models::ProfileResponseModel>>,
29 #[serde(
30 rename = "paymentIntentClientSecret",
31 alias = "PaymentIntentClientSecret",
32 skip_serializing_if = "Option::is_none"
33 )]
34 pub payment_intent_client_secret: Option<String>,
35 #[serde(
36 rename = "success",
37 alias = "Success",
38 skip_serializing_if = "Option::is_none"
39 )]
40 pub success: Option<bool>,
41}
42
43impl PaymentResponseModel {
44 pub fn new() -> PaymentResponseModel {
45 PaymentResponseModel {
46 object: None,
47 user_profile: None,
48 payment_intent_client_secret: None,
49 success: None,
50 }
51 }
52}