@bluvo/sdk-ts
Version:
Bluvo SDK for TypeScript
50 lines (42 loc) • 1.24 kB
text/typescript
/**
* Bluvo API
* APIs to supercharge your crypto project.
*
* OpenAPI spec version: 0.0.3
* Contact: help@bluvo.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { HttpFile } from '../http/http';
export class GetOTTToken200Response {
/**
* The generated OTT token for accessing private endpoints
*/
'token': string;
/**
* The date and time when the token expires
*/
'expiresAt': string;
static readonly discriminator: string | undefined = undefined;
static readonly mapping: {[index: string]: string} | undefined = undefined;
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "token",
"baseName": "token",
"type": "string",
"format": ""
},
{
"name": "expiresAt",
"baseName": "expiresAt",
"type": "string",
"format": ""
} ];
static getAttributeTypeMap() {
return GetOTTToken200Response.attributeTypeMap;
}
public constructor() {
}
}