UNPKG

umbraco-management-api-client

Version:

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

30 lines (29 loc) 1.18 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 */ export declare const UserStateModel: { readonly Active: "Active"; readonly Disabled: "Disabled"; readonly LockedOut: "LockedOut"; readonly Invited: "Invited"; readonly Inactive: "Inactive"; readonly All: "All"; }; export type UserStateModel = typeof UserStateModel[keyof typeof UserStateModel]; export declare function instanceOfUserStateModel(value: any): boolean; export declare function UserStateModelFromJSON(json: any): UserStateModel; export declare function UserStateModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserStateModel; export declare function UserStateModelToJSON(value?: UserStateModel | null): any; export declare function UserStateModelToJSONTyped(value: any, ignoreDiscriminator: boolean): UserStateModel;