updated file attributes

This commit is contained in:
Timo 2021-03-25 14:40:48 +02:00
parent 591e4874f1
commit 579a36d579
3 changed files with 10 additions and 8 deletions

View File

@ -7,7 +7,7 @@ To re-generate http rune swagger
YOu need swagger-codegen installed `brew install swagger-codegen`
```
BASE=http://redaction.redaction-timo-latest.178.63.47.73.xip.io/
BASE=https://timo-redaction-dev-2.iqser.cloud/
URL="$BASE"v2/api-docs?group=redaction-gateway-v1
mkdir -p /tmp/swagger
swagger-codegen generate -i "$URL" -l typescript-angular -o /tmp/swagger

View File

@ -381,24 +381,24 @@ export class FileAttributesControllerService {
* Delete a specific file attribute.
* None
* @param ruleSetId ruleSetId
* @param ruleSetId ruleSetId
* @param fileAttributeId fileAttributeId
* @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.
*/
public setFileAttributesConfiguration1(ruleSetId: string, fileAttributeId: string, observe?: 'body', reportProgress?: boolean): Observable<any>;
public setFileAttributesConfiguration1(
public deleteFileAttributesConfiguration(ruleSetId: string, fileAttributeId: string, observe?: 'body', reportProgress?: boolean): Observable<any>;
public deleteFileAttributesConfiguration(
ruleSetId: string,
fileAttributeId: string,
observe?: 'response',
reportProgress?: boolean
): Observable<HttpResponse<any>>;
public setFileAttributesConfiguration1(
public deleteFileAttributesConfiguration(
ruleSetId: string,
fileAttributeId: string,
observe?: 'events',
reportProgress?: boolean
): Observable<HttpEvent<any>>;
public setFileAttributesConfiguration1(
public deleteFileAttributesConfiguration(
ruleSetId: string,
fileAttributeId: string,
observe: any = 'body',

View File

@ -9,8 +9,10 @@
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { FileAttribute } from './fileAttribute';
import { FileAttributeConfig } from './fileAttributeConfig';
export interface FileAttributesConfig {
fileAttributes?: Array<FileAttribute>;
delimiter?: string;
fileAttributeConfigs?: Array<FileAttributeConfig>;
filenameMappingColumnHeaderName?: string;
}