From f4c5c730739d5cf997056446d1a48f676a998bfa Mon Sep 17 00:00:00 2001 From: djkato Date: Mon, 15 Jul 2024 16:02:37 +0200 Subject: [PATCH] forgot to make these fields public --- sdk/src/webhooks/sync_response.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/src/webhooks/sync_response.rs b/sdk/src/webhooks/sync_response.rs index 2e19b19..b814f66 100644 --- a/sdk/src/webhooks/sync_response.rs +++ b/sdk/src/webhooks/sync_response.rs @@ -37,15 +37,15 @@ pub struct ExcludedMethodsResponse { #[derive(Serialize, Debug, Clone)] #[serde(transparent)] -pub struct OrderCalculateTaxes(CheckoutCalculateTaxesResponse); +pub struct OrderCalculateTaxes(pub CheckoutCalculateTaxesResponse); #[derive(Serialize, Debug, Clone)] #[serde(transparent)] -pub struct OrderFilterShippingMethods(CheckoutFilterShippingMethodsResponse); +pub struct OrderFilterShippingMethods(pub CheckoutFilterShippingMethodsResponse); #[derive(Serialize, Debug, Clone)] #[serde(transparent)] -pub struct ShippingListMethodsForCheckout(Vec); +pub struct ShippingListMethodsForCheckout(pub Vec); #[derive(Serialize, Debug, Clone)] pub struct ShippingListMethodsForCheckoutVec {