From 0d9aa58280a066698c557b51f9d214a4f8b3d58b Mon Sep 17 00:00:00 2001 From: BlockChyp SDK Builder Date: Fri, 16 Aug 2024 21:54:52 +0000 Subject: [PATCH] Merge pull request #275 from blockchyp/feature/CHYP-3595 added passthroughSurcharge to model.json --- src/models.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/models.rs b/src/models.rs index 5a39948..69b0b4b 100644 --- a/src/models.rs +++ b/src/models.rs @@ -1350,6 +1350,10 @@ pub struct AuthorizationRequest { /// and in conjunction with the transaction status API. #[serde(rename = "asyncReversals", default)] pub async_reversals: bool, + /// A passthrough surcharge amount. This surcharge amount will be passed directly to the +/// gateway and is not directly calculated. + #[serde(rename = "passthroughSurcharge", default)] + pub passthrough_surcharge: String, }