46 lines
1.3 KiB
TypeScript
46 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 { Stipulatore } from '../../models/stipulatore';
|
|
|
|
export interface AccountsControllerGetAccountStipulatori$Params {
|
|
id: number;
|
|
}
|
|
|
|
export function accountsControllerGetAccountStipulatori(
|
|
http: HttpClient,
|
|
rootUrl: string,
|
|
params: AccountsControllerGetAccountStipulatori$Params,
|
|
context?: HttpContext,
|
|
): Observable<StrictHttpResponse<Array<Stipulatore>>> {
|
|
const rb = new RequestBuilder(
|
|
rootUrl,
|
|
accountsControllerGetAccountStipulatori.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<Array<Stipulatore>>;
|
|
}),
|
|
);
|
|
}
|
|
|
|
accountsControllerGetAccountStipulatori.PATH =
|
|
'/admin/accounts/id/{id}/stipulatori';
|