src/app/models/create-payment-request.model.ts
Properties |
amount |
amount:
|
Type : number
|
defaultContactMethod |
defaultContactMethod:
|
Type : string
|
duplicateOf |
duplicateOf:
|
Type : string
|
Optional |
memo |
memo:
|
Type : string
|
name |
name:
|
Type : string
|
p2PPayToEmailAddress |
p2PPayToEmailAddress:
|
Type : string
|
p2PPayToPhoneNumber |
p2PPayToPhoneNumber:
|
Type : string
|
payFromAccount |
payFromAccount:
|
Type : string
|
payFromBankAccountDescription |
payFromBankAccountDescription:
|
Type : string
|
secret |
secret:
|
Type : string
|
templateId |
templateId:
|
Type : string
|
export interface CreatePaymentRequest {
name: string;
templateId: string;
amount: number;
memo: string;
p2PPayToEmailAddress: string;
p2PPayToPhoneNumber: string;
secret: string;
payFromBankAccountDescription: string;
payFromAccount: string;
defaultContactMethod: string;
duplicateOf?: string;
}