From 48339228ce2e508e1b4fdf794692ee4d4e7b8d57 Mon Sep 17 00:00:00 2001 From: Edgar Date: Wed, 10 Jun 2020 13:21:40 +0200 Subject: [PATCH] make pub --- src/orders.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/orders.rs b/src/orders.rs index 561da3f..39f1819 100644 --- a/src/orders.rs +++ b/src/orders.rs @@ -396,9 +396,9 @@ pub enum CaptureStatusDetails { #[derive(Debug, Serialize, Deserialize, Eq, PartialEq)] pub struct Capture { /// The status of the captured payment. - status: CaptureStatus, + pub status: CaptureStatus, /// The details of the captured payment status. - status_details: CaptureStatusDetails, + pub status_details: CaptureStatusDetails, } #[derive(Debug, Serialize, Deserialize, Eq, PartialEq)]