feat(core): Add Merchant Tax ID in Merchant Profile (#8992)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
awasthi21
2025-09-01 16:08:45 +05:30
committed by GitHub
parent aae1994ea1
commit ff14b7cac8
7 changed files with 59 additions and 6 deletions

View File

@ -662,6 +662,9 @@ pub struct MerchantDetails {
/// The merchant's address details
pub address: Option<AddressDetails>,
#[schema(value_type = Option<String>, example = "123456789")]
pub merchant_tax_registration_id: Option<Secret<String>>,
}
#[derive(Clone, Debug, Deserialize, ToSchema, Serialize, PartialEq)]
#[serde(deny_unknown_fields)]