export interface VerifyIdentityRequest { /** * Base-64-encoded image of the back of the identity document. */ back_side_image?: string; /** * MIME type of the back side image of the identity document. Default is **image/jpeg**. */ back_side_image_mime_type?: string; /** * ID of a personal contact for a company wallet. */ contact?: string; /** * The two-letter ISO 3166-1 ALPHA-2 code for the country. Uppercase. */ country: string; /** * Type of the identification document. Two-letter code. For valid types, use [List Official Identification Documents](ref:list-official-identification-documents). */ document_type: string; /** * ID of the Rapyd Wallet. String starting with **ewallet_**. */ ewallet: `ewallet_${string}`; /** * Base-64-encoded image of the face. */ face_image: string; /** * MIME type of the face image. Default is **image/jpeg**. */ face_image_mime_type?: string; /** * Base-64-encoded image of the front of the identity document. */ front_side_image: string; /** * MIME type of the front side image of the identity document. Default is **image/jpeg**. */ front_side_image_mime_type?: string; /** * ID of the identity verification request. Defined by the client. Must be unique for each request. */ reference_id: string; /** * Determines the action that is taken on the request. */ request_type?: string; /** * Determines whether a webhook is sent with the results of the verification request. */ send_callback?: boolean; } //# sourceMappingURL=VerifyIdentityRequest.d.ts.map