wallee
Version:
TypeScript/JavaScript client for wallee
19 lines (18 loc) • 552 B
TypeScript
declare class WebAppConfirmationRequest {
/**
* The user returns to the web app after granting the permission. The HTTP request contains the code. Provide it here to confirm the web app installation.
*/
'code'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { WebAppConfirmationRequest };