forgot to make these fields public

This commit is contained in:
djkato 2024-07-15 16:02:37 +02:00
parent 7af5ceac2d
commit f4c5c73073

View file

@ -37,15 +37,15 @@ pub struct ExcludedMethodsResponse {
#[derive(Serialize, Debug, Clone)] #[derive(Serialize, Debug, Clone)]
#[serde(transparent)] #[serde(transparent)]
pub struct OrderCalculateTaxes(CheckoutCalculateTaxesResponse); pub struct OrderCalculateTaxes(pub CheckoutCalculateTaxesResponse);
#[derive(Serialize, Debug, Clone)] #[derive(Serialize, Debug, Clone)]
#[serde(transparent)] #[serde(transparent)]
pub struct OrderFilterShippingMethods(CheckoutFilterShippingMethodsResponse); pub struct OrderFilterShippingMethods(pub CheckoutFilterShippingMethodsResponse);
#[derive(Serialize, Debug, Clone)] #[derive(Serialize, Debug, Clone)]
#[serde(transparent)] #[serde(transparent)]
pub struct ShippingListMethodsForCheckout(Vec<ShippingListMethodsForCheckoutVec>); pub struct ShippingListMethodsForCheckout(pub Vec<ShippingListMethodsForCheckoutVec>);
#[derive(Serialize, Debug, Clone)] #[derive(Serialize, Debug, Clone)]
pub struct ShippingListMethodsForCheckoutVec { pub struct ShippingListMethodsForCheckoutVec {