src/app/core/models/payment.ts
amount |
amount: |
Defined in src/app/core/models/payment.ts:11
|
avs_response |
avs_response: |
Defined in src/app/core/models/payment.ts:16
|
created_at |
created_at: |
Defined in src/app/core/models/payment.ts:17
|
display_amount |
display_amount: |
Defined in src/app/core/models/payment.ts:12
|
id |
id: |
Defined in src/app/core/models/payment.ts:8
|
payment_method_id |
payment_method_id: |
Defined in src/app/core/models/payment.ts:13
|
response_code |
response_code: |
Defined in src/app/core/models/payment.ts:14
|
source_id |
source_id: |
Defined in src/app/core/models/payment.ts:10
|
source_type |
source_type: |
Defined in src/app/core/models/payment.ts:9
|
state |
state: |
Defined in src/app/core/models/payment.ts:15
|
updated_at |
updated_at: |
Defined in src/app/core/models/payment.ts:18
|
export class Payment {
id: string;
source_type: string;
source_id: string;
amount: string;
display_amount: string;
payment_method_id: string;
response_code: string;
state: string;
avs_response: string;
created_at: string;
updated_at: string;
}