UNPKG

umbraco-management-api-client

Version:

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

65 lines (64 loc) 1.99 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. */ import type { UserKindModel } from './UserKindModel'; import type { PostUserGroupByIdUsersRequestInner } from './PostUserGroupByIdUsersRequestInner'; /** * * @export * @interface CreateUserRequestModel */ export interface CreateUserRequestModel { /** * * @type {string} * @memberof CreateUserRequestModel */ email: string; /** * * @type {string} * @memberof CreateUserRequestModel */ userName: string; /** * * @type {string} * @memberof CreateUserRequestModel */ name: string; /** * * @type {Set<PostUserGroupByIdUsersRequestInner>} * @memberof CreateUserRequestModel */ userGroupIds: Set<PostUserGroupByIdUsersRequestInner>; /** * * @type {string} * @memberof CreateUserRequestModel */ id?: string | null; /** * * @type {UserKindModel} * @memberof CreateUserRequestModel */ kind: UserKindModel; } /** * Check if a given object implements the CreateUserRequestModel interface. */ export declare function instanceOfCreateUserRequestModel(value: object): value is CreateUserRequestModel; export declare function CreateUserRequestModelFromJSON(json: any): CreateUserRequestModel; export declare function CreateUserRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserRequestModel; export declare function CreateUserRequestModelToJSON(json: any): CreateUserRequestModel; export declare function CreateUserRequestModelToJSONTyped(value?: CreateUserRequestModel | null, ignoreDiscriminator?: boolean): any;