45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/* Code generated by ng-openapi-gen DO NOT EDIT. */
|
|
|
|
import { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';
|
|
import { Observable } from 'rxjs';
|
|
import { filter, map } from 'rxjs/operators';
|
|
import { StrictHttpResponse } from '../../strict-http-response';
|
|
import { RequestBuilder } from '../../request-builder';
|
|
|
|
import { NomenclatoreRes } from '../../models/nomenclatore-res';
|
|
|
|
export interface NomenclatoreControllerGetOneNomenclatoreById$Params {
|
|
id: number;
|
|
}
|
|
|
|
export function nomenclatoreControllerGetOneNomenclatoreById(
|
|
http: HttpClient,
|
|
rootUrl: string,
|
|
params: NomenclatoreControllerGetOneNomenclatoreById$Params,
|
|
context?: HttpContext,
|
|
): Observable<StrictHttpResponse<NomenclatoreRes>> {
|
|
const rb = new RequestBuilder(
|
|
rootUrl,
|
|
nomenclatoreControllerGetOneNomenclatoreById.PATH,
|
|
'get',
|
|
);
|
|
if (params) {
|
|
rb.path('id', params.id, {});
|
|
}
|
|
|
|
return http
|
|
.request(
|
|
rb.build({ responseType: 'json', accept: 'application/json', context }),
|
|
)
|
|
.pipe(
|
|
filter((r: any): r is HttpResponse<any> => r instanceof HttpResponse),
|
|
map((r: HttpResponse<any>) => {
|
|
return r as StrictHttpResponse<NomenclatoreRes>;
|
|
}),
|
|
);
|
|
}
|
|
|
|
nomenclatoreControllerGetOneNomenclatoreById.PATH = '/nomenclatore/id/{id}';
|