@herd/angular-client
Version:
Swagger generated client for @herd/angular-client
67 lines (66 loc) • 6.42 kB
TypeScript
/**
* herd
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.219.0-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { BusinessObjectFormatExternalInterface } from '../model/businessObjectFormatExternalInterface';
import { BusinessObjectFormatExternalInterfaceCreateRequest } from '../model/businessObjectFormatExternalInterfaceCreateRequest';
import { Configuration } from '../configuration';
export declare class BusinessObjectFormatToExternalInterfaceMappingService {
protected httpClient: HttpClient;
protected basePath: string;
defaultHeaders: HttpHeaders;
configuration: Configuration;
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
/**
* @param consumes string[] mime-types
* @return true: consumes contains 'multipart/form-data', false: otherwise
*/
private canConsumeForm;
/**
* createBusinessObjectFormatExternalInterface
* Creates a new business object format to external interface mapping that is identified by namespace, business object definition name, business object format usage, business object format file type, and external interface name.
* @param businessObjectFormatExternalInterfaceCreateRequest the information needed to create a business object format to external interface mapping
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
businessObjectFormattoExternalInterfaceMappingCreateBusinessObjectFormatExternalInterface(businessObjectFormatExternalInterfaceCreateRequest: BusinessObjectFormatExternalInterfaceCreateRequest, observe?: 'body', reportProgress?: boolean): Observable<BusinessObjectFormatExternalInterface>;
businessObjectFormattoExternalInterfaceMappingCreateBusinessObjectFormatExternalInterface(businessObjectFormatExternalInterfaceCreateRequest: BusinessObjectFormatExternalInterfaceCreateRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<BusinessObjectFormatExternalInterface>>;
businessObjectFormattoExternalInterfaceMappingCreateBusinessObjectFormatExternalInterface(businessObjectFormatExternalInterfaceCreateRequest: BusinessObjectFormatExternalInterfaceCreateRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<BusinessObjectFormatExternalInterface>>;
/**
* deleteBusinessObjectFormatExternalInterface
* Deletes an existing business object format to external interface mapping mapping based on the specified parameters.
* @param namespace the namespace
* @param businessObjectDefinitionName the business object definition name
* @param businessObjectFormatUsage the business object format usage
* @param businessObjectFormatFileType the business object format file type
* @param externalInterfaceName the external interface name
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
businessObjectFormattoExternalInterfaceMappingDeleteBusinessObjectFormatExternalInterface(namespace: string, businessObjectDefinitionName: string, businessObjectFormatUsage: string, businessObjectFormatFileType: string, externalInterfaceName: string, observe?: 'body', reportProgress?: boolean): Observable<BusinessObjectFormatExternalInterface>;
businessObjectFormattoExternalInterfaceMappingDeleteBusinessObjectFormatExternalInterface(namespace: string, businessObjectDefinitionName: string, businessObjectFormatUsage: string, businessObjectFormatFileType: string, externalInterfaceName: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<BusinessObjectFormatExternalInterface>>;
businessObjectFormattoExternalInterfaceMappingDeleteBusinessObjectFormatExternalInterface(namespace: string, businessObjectDefinitionName: string, businessObjectFormatUsage: string, businessObjectFormatFileType: string, externalInterfaceName: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<BusinessObjectFormatExternalInterface>>;
/**
* getBusinessObjectFormatExternalInterface
* Retrieves an existing business object format to external interface mapping mapping based on the specified parameters.
* @param namespace the namespace
* @param businessObjectDefinitionName the business object definition name
* @param businessObjectFormatUsage the business object format usage
* @param businessObjectFormatFileType the business object format file type
* @param externalInterfaceName the external interface name
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
businessObjectFormattoExternalInterfaceMappingGetBusinessObjectFormatExternalInterface(namespace: string, businessObjectDefinitionName: string, businessObjectFormatUsage: string, businessObjectFormatFileType: string, externalInterfaceName: string, observe?: 'body', reportProgress?: boolean): Observable<BusinessObjectFormatExternalInterface>;
businessObjectFormattoExternalInterfaceMappingGetBusinessObjectFormatExternalInterface(namespace: string, businessObjectDefinitionName: string, businessObjectFormatUsage: string, businessObjectFormatFileType: string, externalInterfaceName: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<BusinessObjectFormatExternalInterface>>;
businessObjectFormattoExternalInterfaceMappingGetBusinessObjectFormatExternalInterface(namespace: string, businessObjectDefinitionName: string, businessObjectFormatUsage: string, businessObjectFormatFileType: string, externalInterfaceName: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<BusinessObjectFormatExternalInterface>>;
}