/**
 * The subject's National Identity Number information.
 */
export type Nin = {
    /**
     * Gets the Value from NIN.
     */
    value?: string | null;
    /**
     * Gets the IssuingCountry from NIN.
     */
    issuingCountry?: string | null;
    /**
     * Gets the Type from NIN.
     */
    type?: string | null;
};
