Repository URL to install this package:
/**
* Motif Context Service API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
* Contact: info@vipera.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ServiceContextAttribute } from '../model/serviceContextAttribute';
import { ServiceContextAttributeCreate } from '../model/serviceContextAttributeCreate';
import { ServiceContextAttributeUpdate } from '../model/serviceContextAttributeUpdate';
import { Configuration } from '../configuration';
export interface AttributesServiceInterface {
defaultHeaders: HttpHeaders;
configuration: Configuration;
/**
* Creates a Service Context Attribute
* Creates a Service Context Attribute
* @param serviceContextAttributeCreate
*/
createAttribute(serviceContextAttributeCreate?: ServiceContextAttributeCreate, extraHttpRequestParams?: any): Observable<ServiceContextAttribute>;
/**
* Deletes a Service Context Attribute
* Deletes a Service Context Attribute
* @param attribute Attribute Name
*/
deleteAttribute(attribute: string, extraHttpRequestParams?: any): Observable<object>;
/**
* Retrieves a Service Context Attribute
* Retrieves a Service Context Attribute
* @param attribute Attribute Name
*/
getAttribute(attribute: string, extraHttpRequestParams?: any): Observable<ServiceContextAttribute>;
/**
* Retrieves all Service Context Attributes
* Retrieves all Service Context Attributes
*/
getAttributes(extraHttpRequestParams?: any): Observable<Array<ServiceContextAttribute>>;
/**
* Updates a Service Context Attribute
* Updates a Service Context Attribute
* @param attribute Attribute Name
* @param serviceContextAttributeUpdate
*/
updateAttribute(attribute: string, serviceContextAttributeUpdate?: ServiceContextAttributeUpdate, extraHttpRequestParams?: any): Observable<object>;
}