/** * Product Catalog Management * ## TMF API Reference: TMF620 - Product Catalog Management ### Release : 19.0 - June 2019 Product Catalog API is one of Catalog Management API Family. Product Catalog API goal is to provide a catalog of products. ### Operations Product Catalog API performs the following operations on the resources : - Retrieve an entity or a collection of entities depending on filter criteria - Partial update of an entity (including updating rules) - Create an entity (including default values and creation rules) - Delete an entity - Manage notification of events * * OpenAPI spec version: 4.0.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { ProductOfferingPrice } from '../model/productOfferingPrice'; import { ProductOfferingPriceCreate } from '../model/productOfferingPriceCreate'; import { ProductOfferingPriceUpdate } from '../model/productOfferingPriceUpdate'; import { Configuration } from '../configuration'; export declare class ProductOfferingPriceService { 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; /** * Creates a ProductOfferingPrice * This operation creates a ProductOfferingPrice entity. * @param productOfferingPrice The ProductOfferingPrice to be created * @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. */ createProductOfferingPrice(productOfferingPrice: ProductOfferingPriceCreate, observe?: 'body', reportProgress?: boolean): Observable; createProductOfferingPrice(productOfferingPrice: ProductOfferingPriceCreate, observe?: 'response', reportProgress?: boolean): Observable>; createProductOfferingPrice(productOfferingPrice: ProductOfferingPriceCreate, observe?: 'events', reportProgress?: boolean): Observable>; /** * Deletes a ProductOfferingPrice * This operation deletes a ProductOfferingPrice entity. * @param id Identifier of the ProductOfferingPrice * @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. */ deleteProductOfferingPrice(id: string, observe?: 'body', reportProgress?: boolean): Observable; deleteProductOfferingPrice(id: string, observe?: 'response', reportProgress?: boolean): Observable>; deleteProductOfferingPrice(id: string, observe?: 'events', reportProgress?: boolean): Observable>; /** * List or find ProductOfferingPrice objects * This operation list or find ProductOfferingPrice entities * @param fields Comma-separated properties to be provided in response * @param offset Requested index for start of resources to be provided in response * @param limit Requested number of resources to be provided in response * @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. */ listProductOfferingPrice(fields?: string, offset?: number, limit?: number, observe?: 'body', reportProgress?: boolean): Observable>; listProductOfferingPrice(fields?: string, offset?: number, limit?: number, observe?: 'response', reportProgress?: boolean): Observable>>; listProductOfferingPrice(fields?: string, offset?: number, limit?: number, observe?: 'events', reportProgress?: boolean): Observable>>; /** * Updates partially a ProductOfferingPrice * This operation updates partially a ProductOfferingPrice entity. * @param id Identifier of the ProductOfferingPrice * @param productOfferingPrice The ProductOfferingPrice to be updated * @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. */ patchProductOfferingPrice(id: string, productOfferingPrice: ProductOfferingPriceUpdate, observe?: 'body', reportProgress?: boolean): Observable; patchProductOfferingPrice(id: string, productOfferingPrice: ProductOfferingPriceUpdate, observe?: 'response', reportProgress?: boolean): Observable>; patchProductOfferingPrice(id: string, productOfferingPrice: ProductOfferingPriceUpdate, observe?: 'events', reportProgress?: boolean): Observable>; /** * Retrieves a ProductOfferingPrice by ID * This operation retrieves a ProductOfferingPrice entity. Attribute selection is enabled for all first level attributes. * @param id Identifier of the ProductOfferingPrice * @param fields Comma-separated properties to provide in response * @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. */ retrieveProductOfferingPrice(id: string, fields?: string, observe?: 'body', reportProgress?: boolean): Observable; retrieveProductOfferingPrice(id: string, fields?: string, observe?: 'response', reportProgress?: boolean): Observable>; retrieveProductOfferingPrice(id: string, fields?: string, observe?: 'events', reportProgress?: boolean): Observable>; }