/** * This file was auto-generated by Fern from our API Definition. */ import * as Abound from "../../../../index"; /** * @example * { * expiresIn: 900 * } */ export interface AccessTokenRequestSchema { "Idempotency-Key"?: Abound.types.IdempotencyKey | undefined; /** The number of seconds until the access token expires. */ expiresIn: number; customizations?: Abound.CustomizationsSchema; /** The unique identifier of the user associated with this access token. */ userId?: string; }