forgot to make these fields public
This commit is contained in:
parent
7af5ceac2d
commit
f4c5c73073
1 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue