umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
40 lines (39 loc) • 1.62 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 CreateStylesheetFolderRequestModel
*/
export interface CreateStylesheetFolderRequestModel {
/**
*
* @type {string}
* @memberof CreateStylesheetFolderRequestModel
*/
name: string;
/**
*
* @type {FileSystemFolderModel}
* @memberof CreateStylesheetFolderRequestModel
*/
parent?: FileSystemFolderModel | null;
}
/**
* Check if a given object implements the CreateStylesheetFolderRequestModel interface.
*/
export declare function instanceOfCreateStylesheetFolderRequestModel(value: object): value is CreateStylesheetFolderRequestModel;
export declare function CreateStylesheetFolderRequestModelFromJSON(json: any): CreateStylesheetFolderRequestModel;
export declare function CreateStylesheetFolderRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateStylesheetFolderRequestModel;
export declare function CreateStylesheetFolderRequestModelToJSON(json: any): CreateStylesheetFolderRequestModel;
export declare function CreateStylesheetFolderRequestModelToJSONTyped(value?: CreateStylesheetFolderRequestModel | null, ignoreDiscriminator?: boolean): any;