/** * This file was auto-generated by Fern from our API Definition. */ import * as Abound from "../../../index"; /** * @example * { * name: "Ada Lovelace", * id: "tinVerificationId_sample41SD71AV8f", * createdAt: "2024-01-01T00:00:00.000Z", * status: Abound.types.TinVerificationStatusEnum.Match, * tin: "*******00", * tinFingerprint: "tinFingerprint_samplehy2BWO6JJG", * tinType: Abound.types.TinTypeEnum.Individual * } */ export interface TinVerificationSchema extends Abound.TinVerificationRequestSchema { /** The unique identifier for this TIN Verification. */ id: string; /** The creation date and time of the TIN Verification in `ISO 8601` format. */ createdAt: string; status: Abound.types.TinVerificationStatusEnum; tinType?: Abound.types.TinTypeEnum; /** The fingerprint for this TIN Verification. */ tinFingerprint: string; }