PHP Classes

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

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   client/src/app/models/Payment.ts   Download  
File: client/src/app/models/Payment.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: 441 bytes
 

Contents

Class file image Download
export interface Payment { name: string currencies: string deposit: MaxMinPayment withdrawal: MaxMinPayment img: string slug: string } export interface MaxMinPayment { max: number min: number } export interface PaymentFormValue { name: string currencies: string max_deposit: string min_deposit: string max_withdrawal: string min_withdrawal: string img: string slug?: string }