src/app/_interfaces/trafics/transaction/transaction.ts
Properties |
commentaire |
commentaire:
|
Type : string
|
date |
date:
|
Type : string
|
etat |
etat:
|
Type : boolean
|
marchand |
marchand:
|
Type : string
|
montant |
montant:
|
Type : number
|
reference |
reference:
|
Type : string
|
service |
service:
|
Type : string
|
status |
status:
|
Type : number
|
transaction_id |
transaction_id:
|
Type : number
|
type_paiement |
type_paiement:
|
Type : number
|
type_paiement_label |
type_paiement_label:
|
Type : string
|
export interface ITypeOperateur {
id_type_paiement: number;
label: string;
total_montant: number;
}
export interface ITransaction {
type_paiement: number;
type_paiement_label: string;
marchand: string;
service: string;
montant: number;
date: string;
commentaire: string;
etat: boolean;
status: number;
reference: string;
transaction_id: number;
}
export interface IMerchantData {
merchant_key: string;
solde: number;
total_transaction: number;
total_journee: number;
revesement: number;
type_operateur: ITypeOperateur[];
last_five_transactions: ITransaction[];
}