import * as Enums from '../enums/index'; /** * The Result of a call to the /ageVerification/store/identity/storeIfVerified endpoint. * @export * @class StoreIfVerifiedResult */ export declare class StoreIfVerifiedResult { /** * @type {boolean} * @memberof StoreIfVerifiedResult */ isOfAge?: boolean | undefined; /** * @type {Enums.AgeVerifyFailureCode[]} * @memberof StoreIfVerifiedResult */ failureCodes?: Enums.AgeVerifyFailureCode[] | undefined; /** * @type {boolean} * @memberof StoreIfVerifiedResult */ fromStore?: boolean | undefined; /** * @type {string} * @memberof StoreIfVerifiedResult */ createdUtc?: string | undefined; }