@aiozstream/nodejs-client
Version:
AIOZ stream nodejs API client
30 lines (29 loc) • 748 B
TypeScript
/**
* @aiozstream/nodejs-client
* Aioz Stream Service
*
* The version of the OpenAPI document: 1.0
*
*
* NOTE: This class is auto generated.
* Do not edit the class manually.
*/
import AttributeType from './AttributeType.js';
import User from './User.js';
export default class ApiKey {
'createdAt'?: string;
'expiredAt'?: string;
'id'?: string;
'lastRequestedAt'?: string;
'name'?: string;
'publicKey'?: string;
'secret'?: string;
'truncatedSecret'?: string;
'ttl'?: string;
'type'?: string;
'updatedAt'?: string;
'user'?: User;
static readonly discriminator?: string;
static readonly attributeTypeMap: Array<AttributeType>;
static getAttributeTypeMap(): Array<AttributeType>;
}