Skip to content

Commit

Permalink
fix question mark position
Browse files Browse the repository at this point in the history
  • Loading branch information
AleFossati committed Jun 20, 2023
1 parent 8f30be8 commit b142d5d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions API/bricks/payment.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,18 +249,18 @@ The callbacks object contains the callbacks functions the brick will call during
{
'payment_method_id': string,
'transaction_amount': number,
'transaction_details?': {
'transaction_details'?: {
'financial_institution': string,
},
'payer': {
'email': string,
'identification?': {
'identification'?: {
'type': string,
'number': string
},
'first_name?': string,
'last_name?': string,
'address?': {
'first_name'?: string,
'last_name'?: string,
'address'?: {
'city': string,
'federal_unit': string,
'neighborhood': string,
Expand All @@ -269,9 +269,9 @@ The callbacks object contains the callbacks functions the brick will call during
'zip_code': string
}
},
'metadata?': {
'payment_point?': string,
'payment_mode?': string
'metadata'?: {
'payment_point'?: string,
'payment_mode'?: string
}
}
```
Expand Down

0 comments on commit b142d5d

Please sign in to comment.