src/app/models/create-payment-request.model.ts
Properties |
amount |
amount:
|
Type : number
|
creditTemplateId |
creditTemplateId:
|
Type : string
|
debitTemplateId |
debitTemplateId:
|
Type : string
|
duplicateOf |
duplicateOf:
|
Type : string
|
Optional |
memo |
memo:
|
Type : string
|
payFrom |
payFrom:
|
Type : string
|
payFromAccount |
payFromAccount:
|
Type : string
|
payToBankAccount |
payToBankAccount:
|
Type : string
|
payToName |
payToName:
|
Type : string
|
export interface CreatePaymentRequest {
creditTemplateId: string;
debitTemplateId: string;
amount: number;
memo: string;
payFrom: string;
payFromAccount: string;
payToName: string;
payToBankAccount: string;
duplicateOf?: string;
}