projects/angular-client-sdk/src/lib/interfaces/pay-with-card-data.interface.ts
Possible keys received in a message
Properties |
| code |
code:
|
Type : PaperSDKErrorCode
|
| Optional |
| error |
error:
|
Type : Error
|
| Optional |
| height |
height:
|
Type : number
|
| Optional |
| id |
id:
|
Type : string
|
| Optional |
| url |
url:
|
Type : string
|
| Optional |
| width |
width:
|
Type : number
|
| Optional |
import { PaperSDKErrorCode } from '../enums/error-code.enum';
/** Possible keys received in a message */
export interface PaperPayWithCardData {
error?: Error;
code?: PaperSDKErrorCode;
id?: string;
url?: string;
width?: number;
height?: number;
}