/** * Example API * An example application with OpenAPI, Swashbuckle, and API versioning. * Bill Mei * bill.mei@somewhere.com * MIT * https://opensource.org/licenses/MIT * 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 OneTimePasswordParams { /** * The requested API version * default: 1.0 */ 'x-api-version'?: string; /** * The requested API version * default: 1.0 */ 'api-version'?: string; model: __model.PostOneTimePasswordRequest; } export declare class OneTimePasswordService { private http; constructor(http: HttpClient); /** * Posted one-time password in social network * http://undefined/swagger/swagger-ui.html#!/OneTimePassword/undefined */ oneTimePassword(params: OneTimePasswordParams): Observable<__model.PostOneTimePasswordResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }