UNPKG

wallee

Version:
52 lines (51 loc) 1.48 kB
import { CreationEntityState } from "./CreationEntityState"; declare class PaymentProcessorConfiguration { /** * Whether the processor configuration is managed by the application and therefore cannot be changed. */ 'applicationManaged'?: boolean; /** * The ID of the payment contract the processor configuration is linked to. */ 'contractId'?: number; /** * A unique identifier for the object. */ 'id'?: number; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * The name used to identify the payment method configuration. */ 'name'?: string; /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. */ 'plannedPurgeDate'?: Date; /** * The payment processor that the configuration is for. */ 'processor'?: number; /** * The object's current state. */ 'state'?: CreationEntityState; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { PaymentProcessorConfiguration };