PHP Classes

File: client/src/app/models/Transaction.ts

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   client/src/app/models/Transaction.ts   Download  
File: client/src/app/models/Transaction.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 371 bytes
 

Contents

Class file image Download
export default interface Transaction { user: string type: string confirmed: string amount: string uuid: string status: string } export interface TransactionTotal { approved: number declined: number pending: number } export interface TransactionFormValues { payment_method: string transaction_type: string amount: number }