/** * Solidex.Company, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null * 1.0 * undefined */ import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as __model from '../model'; import * as i0 from "@angular/core"; export interface GetMyCompanyListParams { /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface GetPermissionTokenParams { /** company shortcut */ shortcut: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export declare class ProfileService { private http; constructor(http: HttpClient); /** http://undefined/swagger/swagger-ui.html#!/Profile/GetMyCompanyList */ GetMyCompanyList(params: GetMyCompanyListParams): Observable<__model.CompanyGetMyCompaniesResponse>; /** * Provide functionality for permission encryption, contains information about user and JWT permission token * http://undefined/swagger/swagger-ui.html#!/Profile/GetPermissionToken */ GetPermissionToken(params: GetPermissionTokenParams): Observable<__model.ParticipantGetByJWTResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }