/** * 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 CreateCompanyVerificationParams { /** * Identifier of the company to be received * format: uuid */ companyId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface UpdateCompanyVerificationStatusParams { /** * Identifier of the company to be received * format: uuid */ companyId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.UpdateCompanyVerificationStatusRequest; } export interface GetCompanyVerificationParams { /** * Identifier of the company to be received * format: uuid */ companyId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface GetCompanyVerificationListParams { /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface GetCompanyVerificationStatusParams { /** * Identifier of the company to be received * format: uuid */ companyId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export declare class VerificationService { private http; constructor(http: HttpClient); /** * The method provider possibility to create a company verification by company id and user information id * http://undefined/swagger/swagger-ui.html#!/Verification/CreateCompanyVerification */ CreateCompanyVerification(params: CreateCompanyVerificationParams): Observable<__model.CreateCompanyVerificationResponse>; /** * The method provider possibility to update a company verification status by company id * http://undefined/swagger/swagger-ui.html#!/Verification/UpdateCompanyVerificationStatus */ UpdateCompanyVerificationStatus(params: UpdateCompanyVerificationStatusParams): Observable<__model.UpdateCompanyVerificationStatusResponse>; /** * The method provider possibility to get a company verification by company id and user information id * http://undefined/swagger/swagger-ui.html#!/Verification/GetCompanyVerification */ GetCompanyVerification(params: GetCompanyVerificationParams): Observable<__model.GetCompanyVerificationResponse>; /** * The method provider possibility to get a company verification list that are under review * http://undefined/swagger/swagger-ui.html#!/Verification/GetCompanyVerificationList */ GetCompanyVerificationList(params: GetCompanyVerificationListParams): Observable<__model.GetCompanyVerificationListResponse>; /** * The method provider possibility to get a company verification status by company id * http://undefined/swagger/swagger-ui.html#!/Verification/GetCompanyVerificationStatus */ GetCompanyVerificationStatus(params: GetCompanyVerificationStatusParams): Observable<__model.GetCompanyVerificationStatusResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }