bitwarden_api_api/models/
checkout_billing_address_request.rs1use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct CheckoutBillingAddressRequest {
17 #[serde(rename = "country")]
18 pub country: String,
19 #[serde(rename = "postalCode")]
20 pub postal_code: String,
21 #[serde(rename = "taxId", skip_serializing_if = "Option::is_none")]
22 pub tax_id: Option<Box<models::TaxIdRequest>>,
23}
24
25impl CheckoutBillingAddressRequest {
26 pub fn new(country: String, postal_code: String) -> CheckoutBillingAddressRequest {
27 CheckoutBillingAddressRequest {
28 country,
29 postal_code,
30 tax_id: None,
31 }
32 }
33}