UNPKG

umbraco-management-api-client

Version:

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

52 lines (51 loc) 1.74 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. */ import type { FileSystemFolderModel } from './FileSystemFolderModel'; /** * * @export * @interface StylesheetItemResponseModel */ export interface StylesheetItemResponseModel { /** * * @type {string} * @memberof StylesheetItemResponseModel */ path: string; /** * * @type {string} * @memberof StylesheetItemResponseModel */ name: string; /** * * @type {FileSystemFolderModel} * @memberof StylesheetItemResponseModel */ parent?: FileSystemFolderModel | null; /** * * @type {boolean} * @memberof StylesheetItemResponseModel */ isFolder: boolean; } /** * Check if a given object implements the StylesheetItemResponseModel interface. */ export declare function instanceOfStylesheetItemResponseModel(value: object): value is StylesheetItemResponseModel; export declare function StylesheetItemResponseModelFromJSON(json: any): StylesheetItemResponseModel; export declare function StylesheetItemResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): StylesheetItemResponseModel; export declare function StylesheetItemResponseModelToJSON(json: any): StylesheetItemResponseModel; export declare function StylesheetItemResponseModelToJSONTyped(value?: StylesheetItemResponseModel | null, ignoreDiscriminator?: boolean): any;