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