/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export interface ApiAccessToken { /** REQUIRED. The access token issued by the authorization server. */ accessToken?: string; /** RECOMMENDED. The lifetime in seconds of the access token. */ expiresIn?: number; /** * OPTIONAL. The refresh token, which can be used to obtain * new access tokens using the same authorization grant. */ refreshToken?: string; /** * OPTIONAL, if identical to the scope requested by the client; * otherwise, REQUIRED. The scope of the access token. * repeated string scope = 5 [ json_name = "scope" ]; * REQUIRED if the "state" parameter was present in the client * authorization request. The exact value received from the client. */ state?: string; /** REQUIRED. The type of the token issued. Value is case insensitive. */ tokenType?: string; }