UNPKG

umbraco-management-api-client

Version:

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

64 lines (63 loc) 1.93 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 { PostUserGroupByIdUsersRequestInner } from './PostUserGroupByIdUsersRequestInner'; /** * * @export * @interface InviteUserRequestModel */ export interface InviteUserRequestModel { /** * * @type {string} * @memberof InviteUserRequestModel */ email: string; /** * * @type {string} * @memberof InviteUserRequestModel */ userName: string; /** * * @type {string} * @memberof InviteUserRequestModel */ name: string; /** * * @type {Set<PostUserGroupByIdUsersRequestInner>} * @memberof InviteUserRequestModel */ userGroupIds: Set<PostUserGroupByIdUsersRequestInner>; /** * * @type {string} * @memberof InviteUserRequestModel */ id?: string | null; /** * * @type {string} * @memberof InviteUserRequestModel */ message?: string | null; } /** * Check if a given object implements the InviteUserRequestModel interface. */ export declare function instanceOfInviteUserRequestModel(value: object): value is InviteUserRequestModel; export declare function InviteUserRequestModelFromJSON(json: any): InviteUserRequestModel; export declare function InviteUserRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): InviteUserRequestModel; export declare function InviteUserRequestModelToJSON(json: any): InviteUserRequestModel; export declare function InviteUserRequestModelToJSONTyped(value?: InviteUserRequestModel | null, ignoreDiscriminator?: boolean): any;