UNPKG

wallee

Version:
21 lines (20 loc) 570 B
import { CreationEntityState } from "./CreationEntityState"; import { PaymentLinkUpdate } from "./PaymentLinkUpdate"; declare class PaymentLinkActive extends PaymentLinkUpdate { /** * The object's current state. */ 'state'?: CreationEntityState; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { PaymentLinkActive };