/** * Engine API * Civilization Engine 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 { BoardEngineDto } from '../model/boardEngineDto'; import { BoardEnginePageDto } from '../model/boardEnginePageDto'; import { Configuration } from '../configuration'; export declare class BoardService { 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 board * Get board * @param boardId Board ID * @param visiblePrivate Show current user private information * @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. */ getBoard(boardId: number, visiblePrivate?: boolean, observe?: 'body', reportProgress?: boolean): Observable; getBoard(boardId: number, visiblePrivate?: boolean, observe?: 'response', reportProgress?: boolean): Observable>; getBoard(boardId: number, visiblePrivate?: boolean, observe?: 'events', reportProgress?: boolean): Observable>; /** * Get boards * Get all boards * @param ids Board IDs * @param visiblePrivate Show current user private information * @param page Page number * @param size Page size * @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. */ getBoards(ids?: Array, visiblePrivate?: boolean, page?: number, size?: number, observe?: 'body', reportProgress?: boolean): Observable; getBoards(ids?: Array, visiblePrivate?: boolean, page?: number, size?: number, observe?: 'response', reportProgress?: boolean): Observable>; getBoards(ids?: Array, visiblePrivate?: boolean, page?: number, size?: number, observe?: 'events', reportProgress?: boolean): Observable>; }