umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
33 lines (32 loc) • 1.21 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.
*/
/**
*
* @export
* @interface FileSystemFolderModel
*/
export interface FileSystemFolderModel {
/**
*
* @type {string}
* @memberof FileSystemFolderModel
*/
path: string;
}
/**
* Check if a given object implements the FileSystemFolderModel interface.
*/
export declare function instanceOfFileSystemFolderModel(value: object): value is FileSystemFolderModel;
export declare function FileSystemFolderModelFromJSON(json: any): FileSystemFolderModel;
export declare function FileSystemFolderModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileSystemFolderModel;
export declare function FileSystemFolderModelToJSON(json: any): FileSystemFolderModel;
export declare function FileSystemFolderModelToJSONTyped(value?: FileSystemFolderModel | null, ignoreDiscriminator?: boolean): any;