UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

51 lines (50 loc) 1.45 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TagResponseModel */ export interface TagResponseModel { /** * * @type {string} * @memberof TagResponseModel */ id: string; /** * * @type {string} * @memberof TagResponseModel */ text?: string | null; /** * * @type {string} * @memberof TagResponseModel */ group?: string | null; /** * * @type {number} * @memberof TagResponseModel */ nodeCount: number; } /** * Check if a given object implements the TagResponseModel interface. */ export declare function instanceOfTagResponseModel(value: object): value is TagResponseModel; export declare function TagResponseModelFromJSON(json: any): TagResponseModel; export declare function TagResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): TagResponseModel; export declare function TagResponseModelToJSON(json: any): TagResponseModel; export declare function TagResponseModelToJSONTyped(value?: TagResponseModel | null, ignoreDiscriminator?: boolean): any;