/**
* 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:
- DUMMY_V1
- LITLE_V1
- MASTERCARD_V1
- VISA_V1
- NMI_V1
- VANTIV_V1
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;
}[];
}