umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
26 lines (25 loc) • 1.11 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 RedirectStatusModel: {
readonly Enabled: "Enabled";
readonly Disabled: "Disabled";
};
export type RedirectStatusModel = typeof RedirectStatusModel[keyof typeof RedirectStatusModel];
export declare function instanceOfRedirectStatusModel(value: any): boolean;
export declare function RedirectStatusModelFromJSON(json: any): RedirectStatusModel;
export declare function RedirectStatusModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedirectStatusModel;
export declare function RedirectStatusModelToJSON(value?: RedirectStatusModel | null): any;
export declare function RedirectStatusModelToJSONTyped(value: any, ignoreDiscriminator: boolean): RedirectStatusModel;