umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
41 lines (40 loc) • 1.76 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 { DynamicRootQueryOriginRequestModel } from './DynamicRootQueryOriginRequestModel';
import type { DynamicRootQueryRequestModelStepsInner } from './DynamicRootQueryRequestModelStepsInner';
/**
*
* @export
* @interface DynamicRootQueryRequestModel
*/
export interface DynamicRootQueryRequestModel {
/**
*
* @type {DynamicRootQueryOriginRequestModel}
* @memberof DynamicRootQueryRequestModel
*/
origin: DynamicRootQueryOriginRequestModel;
/**
*
* @type {Array<DynamicRootQueryRequestModelStepsInner>}
* @memberof DynamicRootQueryRequestModel
*/
steps: Array<DynamicRootQueryRequestModelStepsInner>;
}
/**
* Check if a given object implements the DynamicRootQueryRequestModel interface.
*/
export declare function instanceOfDynamicRootQueryRequestModel(value: object): value is DynamicRootQueryRequestModel;
export declare function DynamicRootQueryRequestModelFromJSON(json: any): DynamicRootQueryRequestModel;
export declare function DynamicRootQueryRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DynamicRootQueryRequestModel;
export declare function DynamicRootQueryRequestModelToJSON(json: any): DynamicRootQueryRequestModel;
export declare function DynamicRootQueryRequestModelToJSONTyped(value?: DynamicRootQueryRequestModel | null, ignoreDiscriminator?: boolean): any;