// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::ShippingAddress;
impl ShippingAddress {
/// This function creates an empty struct for the object ShippingAddress.
pub fn new(
country_code: String,
state: String,
city: String,
street_line1: String,
street_line2: String,
post_code: String,
) -> Self {
Self {
country_code,
state,
city,
street_line1,
street_line2,
post_code,
}
}
}