UNPKG

@idfy/sdk

Version:
16 lines (15 loc) 811 B
import { SpecialProperties } from './SpecialProperties'; export interface ExtraInfoSignerRequest { /** * A list of the extra information you want to order. Certain types require special properties, * see documentation for more information. Additional cost will incur (with the exception of Difi company info). */ types?: ExtraInfoSignerRequest.TypesEnum[]; /** * A set of key-value pairs with special properties, see documentation for more information. */ specialProperties?: SpecialProperties; } export declare namespace ExtraInfoSignerRequest { type TypesEnum = 'personalInfo' | 'companyInfo' | 'companyInfoAutoComplete' | 'personalCreditCheck' | 'businessCreditCheck' | 'officialPersonalInfo' | 'bankIDApisAmlPersonSanctionPep' | 'bankIDApisAmlCurrentAddress'; }