/** * The Request for the /ageVerification/verify endpoint. Describes information about the person whose age is being verified. * @export * @class AgeVerifyRequest */ export declare class AgeVerifyRequest { /** * @type {string} * @memberof AgeVerifyRequest */ firstName?: string | undefined; /** * @type {string} * @memberof AgeVerifyRequest */ lastName?: string | undefined; /** * @type {object} * @memberof AgeVerifyRequest */ address?: object | undefined; /** * @type {string} * @memberof AgeVerifyRequest */ DOB?: string | undefined; }