umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
46 lines (45 loc) • 1.64 kB
TypeScript
/**
* 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 CreateStylesheetRequestModel
*/
export interface CreateStylesheetRequestModel {
/**
*
* @type {string}
* @memberof CreateStylesheetRequestModel
*/
name: string;
/**
*
* @type {FileSystemFolderModel}
* @memberof CreateStylesheetRequestModel
*/
parent?: FileSystemFolderModel | null;
/**
*
* @type {string}
* @memberof CreateStylesheetRequestModel
*/
content: string;
}
/**
* Check if a given object implements the CreateStylesheetRequestModel interface.
*/
export declare function instanceOfCreateStylesheetRequestModel(value: object): value is CreateStylesheetRequestModel;
export declare function CreateStylesheetRequestModelFromJSON(json: any): CreateStylesheetRequestModel;
export declare function CreateStylesheetRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateStylesheetRequestModel;
export declare function CreateStylesheetRequestModelToJSON(json: any): CreateStylesheetRequestModel;
export declare function CreateStylesheetRequestModelToJSONTyped(value?: CreateStylesheetRequestModel | null, ignoreDiscriminator?: boolean): any;