UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.41 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 DisableUserRequestModel */ export interface DisableUserRequestModel { /** * * @type {Set<PostUserGroupByIdUsersRequestInner>} * @memberof DisableUserRequestModel */ userIds: Set<PostUserGroupByIdUsersRequestInner>; } /** * Check if a given object implements the DisableUserRequestModel interface. */ export declare function instanceOfDisableUserRequestModel(value: object): value is DisableUserRequestModel; export declare function DisableUserRequestModelFromJSON(json: any): DisableUserRequestModel; export declare function DisableUserRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DisableUserRequestModel; export declare function DisableUserRequestModelToJSON(json: any): DisableUserRequestModel; export declare function DisableUserRequestModelToJSONTyped(value?: DisableUserRequestModel | null, ignoreDiscriminator?: boolean): any;