umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
62 lines (61 loc) • 2.33 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.instanceOfScriptItemResponseModel = instanceOfScriptItemResponseModel;
exports.ScriptItemResponseModelFromJSON = ScriptItemResponseModelFromJSON;
exports.ScriptItemResponseModelFromJSONTyped = ScriptItemResponseModelFromJSONTyped;
exports.ScriptItemResponseModelToJSON = ScriptItemResponseModelToJSON;
exports.ScriptItemResponseModelToJSONTyped = ScriptItemResponseModelToJSONTyped;
const FileSystemFolderModel_1 = require("./FileSystemFolderModel");
/**
* Check if a given object implements the ScriptItemResponseModel interface.
*/
function instanceOfScriptItemResponseModel(value) {
if (!('path' in value) || value['path'] === undefined)
return false;
if (!('name' in value) || value['name'] === undefined)
return false;
if (!('isFolder' in value) || value['isFolder'] === undefined)
return false;
return true;
}
function ScriptItemResponseModelFromJSON(json) {
return ScriptItemResponseModelFromJSONTyped(json, false);
}
function ScriptItemResponseModelFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'path': json['path'],
'name': json['name'],
'parent': json['parent'] == null ? undefined : (0, FileSystemFolderModel_1.FileSystemFolderModelFromJSON)(json['parent']),
'isFolder': json['isFolder'],
};
}
function ScriptItemResponseModelToJSON(json) {
return ScriptItemResponseModelToJSONTyped(json, false);
}
function ScriptItemResponseModelToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'path': value['path'],
'name': value['name'],
'parent': (0, FileSystemFolderModel_1.FileSystemFolderModelToJSON)(value['parent']),
'isFolder': value['isFolder'],
};
}