//#region src/model/CreateApiTokenResponse.d.ts
type ICreateApiTokenResponse = {
id: string;
name: string;
fullToken: string;
};
/**
* @typedef {Object} ICreateApiTokenResponse
* @property {String} id
* @property {String} name
* @property {String} fullToken
*/
/**
* The CreateApiTokenResponse model module.
* @module model/CreateApiTokenResponse
* @type {ICreateApiTokenResponse}
*/
declare class CreateApiTokenResponse {
/**
* Initializes the fields of this object.
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
* Only for internal use.
*/
static initialize(obj: any): void;
/**
* Constructs a CreateApiTokenResponse from a plain JavaScript object, optionally creating a new instance.
* Copies all relevant properties from data to obj if supplied or a new instance if not.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @param {module:model/CreateApiTokenResponse} obj Optional instance to populate.
* @return {module:model/CreateApiTokenResponse} The populated CreateApiTokenResponse instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to CreateApiTokenResponse.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to CreateApiTokenResponse.
*/
static validateJSON(data: any): boolean;
id: string;
name: string;
fullToken: string;
}
//#endregion
export { ICreateApiTokenResponse, CreateApiTokenResponse as default };