Skip to content

Commit

Permalink
Add point of sale details to payments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pimm committed Sep 20, 2023
1 parent 0503c7e commit 991032a
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/data/payments/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ export interface PaymentData extends Model<'payment'> {
| KlarnaDetails
| PayPalDetails
| PaysafecardDetails
| PointOfSaleDetails
| SepaDirectDebitDetails
| SofortBankingDetails
| VoucherDetails;
Expand Down Expand Up @@ -688,6 +689,50 @@ export interface PaysafecardDetails {
customerReference: string;
}

export interface PointOfSaleDetails {
/**
* The identifier referring to the terminal this payment was created for. For example, `term_utGtYu756h`.
*
* @see https://docs.mollie.com/reference/v2/payments-api/get-payment?path=details/terminalId#point-of-sale
*/
terminalId: string;
/**
* Only available if the payment has been completed - The last four digits of the card number.
*
* @see https://docs.mollie.com/reference/v2/payments-api/get-payment?path=details/cardNumber#point-of-sale
*/
cardNumber: string;
/**
* Only available if the payment has been completed - Unique alphanumeric representation of card, usable for identifying returning customers.
*
* @see https://docs.mollie.com/reference/v2/payments-api/get-payment?path=details/cardFingerprint#point-of-sale
*/
cardFingerprint: string;
/**
* Only available if the payment has been completed and if the data is available - The card's target audience.
*
* Possible values: `consumer` `business` `null`
*
* @see https://docs.mollie.com/reference/v2/payments-api/get-payment?path=details/cardAudience#point-of-sale
*/
cardAudience: Nullable<'consumer' | 'business'>;
/**
* Only available if the payment has been completed - The card's label. Note that not all labels can be processed through Mollie.
*
* Possible values: `American Express` `Carta Si` `Carte Bleue` `Dankort` `Diners Club` `Discover` `JCB` `Laser` `Maestro` `Mastercard` `Unionpay` `Visa` `null`
*
* @see https://docs.mollie.com/reference/v2/payments-api/get-payment?path=details/cardLabel#point-of-sale
*/
cardLabel: Nullable<'American Express' | 'Carta Si' | 'Carte Bleue' | 'Dankort' | 'Diners Club' | 'Discover' | 'JCB' | 'Laser' | 'Maestro' | 'Mastercard' | 'Unionpay' | 'Visa'>;
/**
* Only available if the payment has been completed - The [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of the country the card was issued in. For example:
* `BE`.
*
* @see https://docs.mollie.com/reference/v2/payments-api/get-payment?path=details/cardCountryCode#point-of-sale
*/
cardCountryCode: string;
}

export interface SepaDirectDebitDetails {
/**
* Transfer reference used by Mollie to identify this payment.
Expand Down

0 comments on commit 991032a

Please sign in to comment.