wallee
Version:
TypeScript/JavaScript client for wallee
25 lines (24 loc) • 622 B
TypeScript
import { ChargeFlowLevel } from "./ChargeFlowLevel";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class ChargeFlowLevelPaymentLink extends TransactionAwareEntity {
/**
*
*/
'chargeFlowLevel'?: ChargeFlowLevel;
/**
*
*/
'paymentLink'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ChargeFlowLevelPaymentLink };