UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

39 lines (38 loc) 1.52 kB
/** * 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 DynamicRootQueryOriginRequestModel */ export interface DynamicRootQueryOriginRequestModel { /** * * @type {string} * @memberof DynamicRootQueryOriginRequestModel */ alias: string; /** * * @type {string} * @memberof DynamicRootQueryOriginRequestModel */ id?: string | null; } /** * Check if a given object implements the DynamicRootQueryOriginRequestModel interface. */ export declare function instanceOfDynamicRootQueryOriginRequestModel(value: object): value is DynamicRootQueryOriginRequestModel; export declare function DynamicRootQueryOriginRequestModelFromJSON(json: any): DynamicRootQueryOriginRequestModel; export declare function DynamicRootQueryOriginRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DynamicRootQueryOriginRequestModel; export declare function DynamicRootQueryOriginRequestModelToJSON(json: any): DynamicRootQueryOriginRequestModel; export declare function DynamicRootQueryOriginRequestModelToJSONTyped(value?: DynamicRootQueryOriginRequestModel | null, ignoreDiscriminator?: boolean): any;