File

src/app/_interfaces/trafics/transaction/transaction.ts

Index

Properties

Properties

last_five_transactions
last_five_transactions: ITransaction[]
Type : ITransaction[]
merchant_key
merchant_key: string
Type : string
revesement
revesement: number
Type : number
solde
solde: number
Type : number
total_journee
total_journee: number
Type : number
total_transaction
total_transaction: number
Type : number
type_operateur
type_operateur: ITypeOperateur[]
Type : ITypeOperateur[]
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[];
}

results matching ""

    No results matching ""