umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
41 lines (40 loc) • 1.61 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 { DynamicRootContextRequestModel } from './DynamicRootContextRequestModel';
import type { DynamicRootQueryRequestModel } from './DynamicRootQueryRequestModel';
/**
*
* @export
* @interface DynamicRootRequestModel
*/
export interface DynamicRootRequestModel {
/**
*
* @type {DynamicRootContextRequestModel}
* @memberof DynamicRootRequestModel
*/
context: DynamicRootContextRequestModel;
/**
*
* @type {DynamicRootQueryRequestModel}
* @memberof DynamicRootRequestModel
*/
query: DynamicRootQueryRequestModel;
}
/**
* Check if a given object implements the DynamicRootRequestModel interface.
*/
export declare function instanceOfDynamicRootRequestModel(value: object): value is DynamicRootRequestModel;
export declare function DynamicRootRequestModelFromJSON(json: any): DynamicRootRequestModel;
export declare function DynamicRootRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DynamicRootRequestModel;
export declare function DynamicRootRequestModelToJSON(json: any): DynamicRootRequestModel;
export declare function DynamicRootRequestModelToJSONTyped(value?: DynamicRootRequestModel | null, ignoreDiscriminator?: boolean): any;