From 0eece987543acfc9eaa476739e8707b2fb60a975 Mon Sep 17 00:00:00 2001 From: BlockChyp SDK Builder Date: Fri, 23 Aug 2024 17:51:18 +0000 Subject: [PATCH] Bump version to 2.18.7 --- Cargo.toml | 2 +- src/models.rs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9d770c9..a11c726 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blockchyp" -version = "2.18.6" +version = "2.18.7" edition = "2021" description = "This is the SDK for Rust. Like all BlockChyp SDKs, it provides a full client for the BlockChyp gateway and BlockChyp payment terminals." documentation = "https://docs.blockchyp.com/#overview" 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, }