export interface VettingHistory { /** The vetting provider used. */ provider: "AEGIS"; /** The vetting class level. */ vettingClass: "STANDARD"; /** ISO 8601 formatted timestamp of when the vetting was initiated. */ vettingDate: string; /** Vetting score if available. */ vettingScore?: number; /** Current status of the vetting process. */ vettingStatus: VettingHistory.VettingStatus; } export declare namespace VettingHistory { /** Current status of the vetting process. */ const VettingStatus: { readonly Active: "ACTIVE"; readonly Failed: "FAILED"; readonly InProgress: "IN_PROGRESS"; readonly Pending: "PENDING"; }; type VettingStatus = (typeof VettingStatus)[keyof typeof VettingStatus]; }