umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
52 lines (51 loc) • 1.79 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 { ReferenceByIdModel } from './ReferenceByIdModel';
/**
*
* @export
* @interface DynamicRootContextRequestModel
*/
export interface DynamicRootContextRequestModel {
/**
*
* @type {string}
* @memberof DynamicRootContextRequestModel
*/
id?: string | null;
/**
*
* @type {ReferenceByIdModel}
* @memberof DynamicRootContextRequestModel
*/
parent: ReferenceByIdModel;
/**
*
* @type {string}
* @memberof DynamicRootContextRequestModel
*/
culture?: string | null;
/**
*
* @type {string}
* @memberof DynamicRootContextRequestModel
*/
segment?: string | null;
}
/**
* Check if a given object implements the DynamicRootContextRequestModel interface.
*/
export declare function instanceOfDynamicRootContextRequestModel(value: object): value is DynamicRootContextRequestModel;
export declare function DynamicRootContextRequestModelFromJSON(json: any): DynamicRootContextRequestModel;
export declare function DynamicRootContextRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DynamicRootContextRequestModel;
export declare function DynamicRootContextRequestModelToJSON(json: any): DynamicRootContextRequestModel;
export declare function DynamicRootContextRequestModelToJSONTyped(value?: DynamicRootContextRequestModel | null, ignoreDiscriminator?: boolean): any;