Skip to content

Commit

Permalink
Merge pull request #170 from AleFossati/fix/ticketdata-properties
Browse files Browse the repository at this point in the history
Added missing props to TicketData
  • Loading branch information
AleFossati authored Jun 20, 2023
2 parents c08d917 + b142d5d commit 9f6c3ff
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions API/bricks/payment.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,22 +249,29 @@ The callbacks object contains the callbacks functions the brick will call during
{
'payment_method_id': string,
'transaction_amount': number,
'transaction_details'?: {
'financial_institution': string,
},
'payer': {
'email': string,
'identification?': {
'type': string,
'number': string
'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,
'street_name': string,
'street_number': string,
'zip_code': string
}
},
'metadata'?: {
'payment_point'?: string,
'payment_mode'?: string
}
}
```
Expand Down

0 comments on commit 9f6c3ff

Please sign in to comment.