@cotofe/service-of-system
Version:
OpenAPI client for @cotofe/service-of-system
57 lines (56 loc) • 1.39 kB
TypeScript
/**
* Platform
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* tag info
* @export
* @interface TagInfo
*/
export interface TagInfo {
/**
* count
* @type {number}
* @memberof TagInfo
*/
count?: number;
/**
* is root
* @type {number}
* @memberof TagInfo
*/
isRoot?: number;
/**
* parent id
* @type {number}
* @memberof TagInfo
*/
parentId?: number;
/**
* tag id
* @type {number}
* @memberof TagInfo
*/
tagId?: number;
/**
* tag name
* @type {string}
* @memberof TagInfo
*/
tagName?: string;
}
/**
* Check if a given object implements the TagInfo interface.
*/
export declare function instanceOfTagInfo(value: object): value is TagInfo;
export declare function TagInfoFromJSON(json: any): TagInfo;
export declare function TagInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TagInfo;
export declare function TagInfoToJSON(json: any): TagInfo;
export declare function TagInfoToJSONTyped(value?: TagInfo | null, ignoreDiscriminator?: boolean): any;