UNPKG

wallee

Version:
23 lines (22 loc) 504 B
declare class PaymentConnectorFeature { /** * The name of the feature. */ 'displayName'?: string; /** * A unique identifier for the object. */ 'id'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { PaymentConnectorFeature };