src/app/_interfaces/trafics/paiement/paiement.ts
Properties |
| amount |
amount:
|
Type : number
|
| cancel_url |
cancel_url:
|
Type : string
|
| currency |
currency:
|
Type : string
|
| description |
description:
|
Type : string
|
| id |
id:
|
Type : number
|
| lang |
lang:
|
Type : string
|
| merchant_key |
merchant_key:
|
Type : string
|
| message |
message:
|
Type : string
|
| notif_token |
notif_token:
|
Type : string
|
| notif_url |
notif_url:
|
Type : string
|
| order_id |
order_id:
|
Type : string
|
| pay_token |
pay_token:
|
Type : string
|
| payment_url |
payment_url:
|
Type : string
|
| reference |
reference:
|
Type : string
|
| return_url |
return_url:
|
Type : string
|
| status |
status:
|
Type : string
|
export interface IPaiement {
id: number;
merchant_key: string;
currency: string;
order_id: string;
amount: number;
return_url: string;
cancel_url: string;
notif_url: string;
lang: string;
reference: string;
status: string;
message: string;
pay_token: string;
payment_url: string;
notif_token: string;
description: string;
}