/** * This file was auto-generated by Fern from our API Definition. */ import * as Abound from "../../../index"; /** * @example * { * accessToken: "accessToken_sampleeyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE2OTY5ODczNTcsImV4cCI6MTY5Njk4NzY1NywiYXVkIjoiYXBwSWRfc2FtcGxlcU5oVmNkWVFZVSIsImlzcyI6Imh0dHBzOi8vc2FuZGJveC1hcGkud2l0aGFib3VuZC5jb20vdjQiLCJzdWIiOiJ1c2VySWRfc2FtcGxlWEdNRm5oT3BlUiJ9.-NrPVQvsnM8vJouyuP5yeFGlYb1xGgR-gS3v87p5BQk", * createdAt: "2024-01-01T00:00:00.000Z", * expiresAt: "2024-01-01T00:15:00.000Z" * } */ export interface AccessTokenSchema { /** The access token to authenticate your Drop-In UI Components. */ accessToken: string; /** The creation date and time of the access token in `ISO 8601` format. */ createdAt: string; /** The expiration date and time of the access token in `ISO 8601` format. */ expiresAt: string; customizations?: Abound.CustomizationsSchema; /** The unique identifier of the user associated with this access token. */ userId?: string; }