UNPKG

@kontent-ai/management-sdk

Version:
14 lines (13 loc) 749 B
import { IManagementClientConfig } from '../../config'; import { Identifiers } from '../../models'; import { BaseResponses } from '../../responses'; import { ManagementQueryService } from '../../services'; import { BaseQuery } from '../base-query'; export declare class DeactivateUserInAllProjectsQuery extends BaseQuery<BaseResponses.EmptyContentManagementResponse> { protected config: IManagementClientConfig; protected queryService: ManagementQueryService; identifier: Identifiers.UserIdentifier; constructor(config: IManagementClientConfig, queryService: ManagementQueryService, identifier: Identifiers.UserIdentifier); toPromise(): Promise<BaseResponses.EmptyContentManagementResponse>; protected getAction(): string; }