export interface AccessToken { /** * A unique identifier of a token * @readonly */ id?: string | null; /** The token to use for calling the Wix API ecosystem */ token?: string | null; /** Token expiration timestamp */ expires?: Date; }