mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
fix(connector): [Pix] convert data type of pix fields (#5476)
This commit is contained in:
@ -2473,11 +2473,11 @@ pub enum BankTransferData {
|
||||
#[schema(value_type = Option<String>, example = "a1f4102e-a446-4a57-bcce-6fa48899c1d1")]
|
||||
pix_key: Option<Secret<String>>,
|
||||
/// CPF is a Brazilian tax identification number
|
||||
#[schema(value_type = Option<i64>, example = "10599054689")]
|
||||
cpf: Option<Secret<i64>>,
|
||||
#[schema(value_type = Option<String>, example = "10599054689")]
|
||||
cpf: Option<Secret<String>>,
|
||||
/// CNPJ is a Brazilian company tax identification number
|
||||
#[schema(value_type = Option<i64>, example = "74469027417312")]
|
||||
cnpj: Option<Secret<i64>>,
|
||||
#[schema(value_type = Option<String>, example = "74469027417312")]
|
||||
cnpj: Option<Secret<String>>,
|
||||
},
|
||||
Pse {},
|
||||
LocalBankTransfer {
|
||||
|
||||
Reference in New Issue
Block a user