src/app/models/duplicate-info.ts
Properties |
| hash |
hash:
|
Type : string
|
| Optional |
|
Defined in src/app/models/duplicate-info.ts:4
|
| key |
key:
|
Type : string
|
| Optional |
|
Defined in src/app/models/duplicate-info.ts:3
|
| paymentId |
paymentId:
|
Type : string
|
| Optional |
|
Defined in src/app/models/duplicate-info.ts:2
|
export interface DuplicateInfo {
paymentId?: string;
key?: string;
hash?: string;
}