src/app/core/models/payment_mode.ts
Properties |
|
| Optional active |
active:
|
Type : boolean
|
|
Defined in src/app/core/models/payment_mode.ts:7
|
| code |
code:
|
Type : string
|
|
Defined in src/app/core/models/payment_mode.ts:6
|
| description |
description:
|
Type : string
|
|
Defined in src/app/core/models/payment_mode.ts:4
|
| id |
id:
|
Type : number
|
|
Defined in src/app/core/models/payment_mode.ts:2
|
| Optional live_mode |
live_mode:
|
Type : boolean
|
|
Defined in src/app/core/models/payment_mode.ts:8
|
| method_type |
method_type:
|
Type : string
|
|
Defined in src/app/core/models/payment_mode.ts:5
|
| name |
name:
|
Type : string
|
|
Defined in src/app/core/models/payment_mode.ts:3
|
export class PaymentMode {
id: number;
name: string;
description: string;
method_type: string;
code: string;
active?: boolean;
live_mode?: boolean;
}