/** * Finix API */ export declare class CreateVerificationRequest { /** * ID of the `Identity` resource associated with the `Merchant`. */ 'identity'?: string; /** * The ID of the `Merchant`. */ 'merchant'?: string; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; /** * Set the acquiring processor. Avalible values include: Use DUMMY_V1 or null to use your sandbox. For more details on which processor to use, reach out to your Finix point of contact or email Finix Support. */ 'processor'?: string | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }