feat(vsaas): enable platform merchant API Key authentication for org-level operations (#8156)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Sandeep Kumar
2025-05-30 18:20:40 +05:30
committed by GitHub
parent d91cf70ae3
commit 7a44626251
10 changed files with 549 additions and 44 deletions

View File

@ -572,6 +572,10 @@ pub struct MerchantAccountResponse {
/// Product Type of this merchant account
#[schema(value_type = Option<MerchantProductType>, example = "Orchestration")]
pub product_type: Option<api_enums::MerchantProductType>,
/// Merchant Account Type of this merchant account
#[schema(value_type = MerchantAccountType, example = "standard")]
pub merchant_account_type: api_enums::MerchantAccountType,
}
#[cfg(feature = "v2")]