UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.33 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 UserOrderModel: { readonly UserName: "UserName"; readonly Language: "Language"; readonly Name: "Name"; readonly Email: "Email"; readonly Id: "Id"; readonly CreateDate: "CreateDate"; readonly UpdateDate: "UpdateDate"; readonly IsApproved: "IsApproved"; readonly IsLockedOut: "IsLockedOut"; readonly LastLoginDate: "LastLoginDate"; }; export type UserOrderModel = typeof UserOrderModel[keyof typeof UserOrderModel]; export declare function instanceOfUserOrderModel(value: any): boolean; export declare function UserOrderModelFromJSON(json: any): UserOrderModel; export declare function UserOrderModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserOrderModel; export declare function UserOrderModelToJSON(value?: UserOrderModel | null): any; export declare function UserOrderModelToJSONTyped(value: any, ignoreDiscriminator: boolean): UserOrderModel;