/** * Finix API */ import { Currency } from './currency'; export declare class CreateSettlementRequest { 'currency'?: Currency; /** * If the `Application` has more than one associated `processor`, this field is required. */ 'merchantId'?: string; /** * If the `Application` has more than one associated `processor`, it\'s required when creating `settlements` to include the `processor` (e.g. **DUMMY_V1**). */ 'processor'?: string; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }