UNPKG

umbraco-management-api-client

Version:

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

52 lines (51 loc) 1.67 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 StylesheetResponseModel */ export interface StylesheetResponseModel { /** * * @type {string} * @memberof StylesheetResponseModel */ path: string; /** * * @type {string} * @memberof StylesheetResponseModel */ name: string; /** * * @type {FileSystemFolderModel} * @memberof StylesheetResponseModel */ parent?: FileSystemFolderModel | null; /** * * @type {string} * @memberof StylesheetResponseModel */ content: string; } /** * Check if a given object implements the StylesheetResponseModel interface. */ export declare function instanceOfStylesheetResponseModel(value: object): value is StylesheetResponseModel; export declare function StylesheetResponseModelFromJSON(json: any): StylesheetResponseModel; export declare function StylesheetResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): StylesheetResponseModel; export declare function StylesheetResponseModelToJSON(json: any): StylesheetResponseModel; export declare function StylesheetResponseModelToJSONTyped(value?: StylesheetResponseModel | null, ignoreDiscriminator?: boolean): any;