feat(merchant_account): add is_recon_enabled field in merchant_account (#1713)

This commit is contained in:
anji-reddy-j
2023-07-18 19:31:35 +05:30
committed by GitHub
parent d52b564f09
commit 7549cd3aa6
11 changed files with 38 additions and 1 deletions

View File

@ -227,6 +227,9 @@ pub struct MerchantAccountResponse {
/// The organization id merchant is associated with
pub organization_id: Option<String>,
/// A boolean value to indicate if the merchant has recon service is enabled or not, by default value is false
pub is_recon_enabled: bool,
}
#[derive(Clone, Debug, Deserialize, ToSchema, Serialize)]