@sudoplatform/sudo-secure-id-verification
    Preparing search index...

    Interface VerifyIdentityInput

    Input to verifyIdentity method

    interface VerifyIdentityInput {
        address: string;
        city?: string;
        country: string;
        dateOfBirth: string;
        firstName: string;
        lastName: string;
        postalCode: string;
        state?: string;
        verificationMethod?: VerificationMethod;
    }
    Index

    Properties

    address: string

    Street address of identity to verify

    city?: string

    City of identity to verify

    country: string

    ISO 3166-1 alpha-2 country code, e.g. US.

    dateOfBirth: string

    Date of birth of identity to verify

    firstName: string

    First name of identity to verify

    lastName: string

    Last name of identity to verify

    postalCode: string

    Postal code of identity to verify

    state?: string

    State of identity to verify

    verificationMethod?: VerificationMethod

    Verification method to use to verify data. Must be VerificationMethod.KnowledgeOfPII if specified.