/** * Finix API */ import { CreateProcessorRequestConfig } from './createProcessorRequestConfig'; /** * */ export declare class CreateProcessorRequest { 'config'?: CreateProcessorRequestConfig; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; /** * The type of processor. Use **DUMMY_V1** for sandbox. */ 'type': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }