umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
32 lines (31 loc) • 1.29 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
*/
export declare const OperatorModel: {
readonly Equals: "Equals";
readonly NotEquals: "NotEquals";
readonly Contains: "Contains";
readonly NotContains: "NotContains";
readonly LessThan: "LessThan";
readonly LessThanEqualTo: "LessThanEqualTo";
readonly GreaterThan: "GreaterThan";
readonly GreaterThanEqualTo: "GreaterThanEqualTo";
};
export type OperatorModel = typeof OperatorModel[keyof typeof OperatorModel];
export declare function instanceOfOperatorModel(value: any): boolean;
export declare function OperatorModelFromJSON(json: any): OperatorModel;
export declare function OperatorModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperatorModel;
export declare function OperatorModelToJSON(value?: OperatorModel | null): any;
export declare function OperatorModelToJSONTyped(value: any, ignoreDiscriminator: boolean): OperatorModel;