/** * @api.video/nodejs-client * api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes. * * The version of the OpenAPI document: 1 * * * NOTE: This class is auto generated. * Do not edit the class manually. */ import AttributeType from './AttributeType.js'; export default class RefreshTokenPayload { /** * The refresh token is either the first refresh token you received when you authenticated with the auth/api-key endpoint, or it's the refresh token from the last time you used the auth/refresh endpoint. Place this in the body of your request to obtain a new access token (which is valid for an hour) and a new refresh token. */ 'refreshToken': string; static readonly discriminator?: string = undefined; static readonly attributeTypeMap: Array = [ { name: 'refreshToken', baseName: 'refreshToken', type: 'string', format: '', }, ]; static getAttributeTypeMap(): Array { return RefreshTokenPayload.attributeTypeMap; } }