umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
33 lines (32 loc) • 1.27 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 DynamicRootResponseModel
*/
export interface DynamicRootResponseModel {
/**
*
* @type {Array<string>}
* @memberof DynamicRootResponseModel
*/
roots: Array<string>;
}
/**
* Check if a given object implements the DynamicRootResponseModel interface.
*/
export declare function instanceOfDynamicRootResponseModel(value: object): value is DynamicRootResponseModel;
export declare function DynamicRootResponseModelFromJSON(json: any): DynamicRootResponseModel;
export declare function DynamicRootResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DynamicRootResponseModel;
export declare function DynamicRootResponseModelToJSON(json: any): DynamicRootResponseModel;
export declare function DynamicRootResponseModelToJSONTyped(value?: DynamicRootResponseModel | null, ignoreDiscriminator?: boolean): any;