UNPKG

wallee

Version:
28 lines (27 loc) 608 B
import { PaymentInformationHashType } from "./PaymentInformationHashType"; declare class PaymentInformationHash { /** * A unique identifier for the object. */ 'id'?: number; /** * */ 'type'?: PaymentInformationHashType; /** * */ 'value'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { PaymentInformationHash };