src/app/core/models/payment.ts
Properties |
| amount |
amount:
|
Type : Price
|
|
Defined in src/app/core/models/payment.ts:5
|
| id |
id:
|
Type : string
|
|
Defined in src/app/core/models/payment.ts:4
|
| payment_method_id |
payment_method_id:
|
Type : string
|
|
Defined in src/app/core/models/payment.ts:6
|
| slug |
slug:
|
Type : string
|
|
Defined in src/app/core/models/payment.ts:7
|
import { Price } from './price';
export class Payment {
id: string;
amount: Price;
payment_method_id: string;
slug: string;
}