/** * Security API * Civilization Security API * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { UserDto } from '../model/userDto'; import { Configuration } from '../configuration'; export declare class UserService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); /** * @param consumes string[] mime-types * @return true: consumes contains 'multipart/form-data', false: otherwise */ private canConsumeForm; /** * Get current user * Get current user * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getCurrentUser(observe?: 'body', reportProgress?: boolean): Observable; getCurrentUser(observe?: 'response', reportProgress?: boolean): Observable>; getCurrentUser(observe?: 'events', reportProgress?: boolean): Observable>; /** * Get user * Get user * @param userUuid * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getUser(userUuid: string, observe?: 'body', reportProgress?: boolean): Observable; getUser(userUuid: string, observe?: 'response', reportProgress?: boolean): Observable>; getUser(userUuid: string, observe?: 'events', reportProgress?: boolean): Observable>; /** * Get users * Get users by uuids * @param uuid * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getUsersByUuid(uuid: Array, observe?: 'body', reportProgress?: boolean): Observable>; getUsersByUuid(uuid: Array, observe?: 'response', reportProgress?: boolean): Observable>>; getUsersByUuid(uuid: Array, observe?: 'events', reportProgress?: boolean): Observable>>; }