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