Skip to content
Snippets Groups Projects
Commit b546d790 authored by Florent Poittevin's avatar Florent Poittevin
Browse files

Regenerate api model

parent e654b1ba
No related branches found
No related tags found
1 merge request!24Fpo/refacto generic crud
Showing
with 236 additions and 274 deletions
import { NgModule, ModuleWithProviders, SkipSelf, Optional } from "@angular/core";
import { Configuration } from "./configuration";
import { HttpClient } from "@angular/common/http";
import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';
import { Configuration } from './configuration';
import { HttpClient } from '@angular/common/http';
......@@ -22,11 +22,11 @@ export class ApiModule {
constructor( @Optional() @SkipSelf() parentModule: ApiModule,
@Optional() http: HttpClient) {
if (parentModule) {
throw new Error("ApiModule is already loaded. Import in your base AppModule only.");
throw new Error('ApiModule is already loaded. Import in your base AppModule only.');
}
if (!http) {
throw new Error("You need to import the HttpClientModule in your AppModule! \n" +
"See also https://github.com/angular/angular/issues/20575");
throw new Error('You need to import the HttpClientModule in your AppModule! \n' +
'See also https://github.com/angular/angular/issues/20575');
}
}
}
......@@ -31,7 +31,7 @@ export class Configuration {
* @param contentTypes - the array of content types that are available for selection
* @returns the selected content-type or <code>undefined</code> if no selection could be made.
*/
public selectHeaderContentType(contentTypes: string[]): string | undefined {
public selectHeaderContentType (contentTypes: string[]): string | undefined {
if (contentTypes.length === 0) {
return undefined;
}
......@@ -73,7 +73,7 @@ export class Configuration {
* @return True if the given MIME is JSON, false otherwise.
*/
public isJsonMime(mime: string): boolean {
const jsonMime: RegExp = new RegExp("^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$", "i");
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === "application/json-patch+json");
const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
}
}
import { HttpUrlEncodingCodec } from "@angular/common/http";
import { HttpUrlEncodingCodec } from '@angular/common/http';
/**
* CustomHttpUrlEncodingCodec
* Fix plus sign (+) not encoding, so sent as blank space
* See: https://github.com/angular/angular/issues/11058#issuecomment-247367318
*/
export class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
export class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
encodeKey(k: string): string {
k = super.encodeKey(k);
return k.replace(/\+/gi, "%2B");
return k.replace(/\+/gi, '%2B');
}
encodeValue(v: string): string {
v = super.encodeValue(v);
return v.replace(/\+/gi, "%2B");
return v.replace(/\+/gi, '%2B');
}
}
export * from "./api/api";
export * from "./model/models";
export * from "./configuration";
export * from "./api.module";
export * from './api/api';
export * from './model/models';
export * from './variables';
export * from './configuration';
export * from './api.module';
\ No newline at end of file
/**
* DLCM-Solution
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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.
*/
export interface AipChecksumCheckModel {
/**
* Date of last checksum check execution
*/
checkDate?: string;
/**
* Result of last checksum check execution
*/
checkingSucceed?: boolean;
}
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -11,30 +11,30 @@
*/
export interface AipFileFormatModel {
export interface AipFileFormatModel {
/**
* Format PUID of file
*/
puid?: string;
/**
* Format description of file
* Content type of file
*/
format?: string;
contentType?: string;
/**
* Format details of file
*/
details?: string;
/**
* Format version of file
*/
version?: string;
/**
* Content type of file
* Format description of file
*/
contentType?: string;
format?: string;
/**
* MD5 checksum of file
*/
md5?: string;
/**
* Format PUID of file
*/
puid?: string;
/**
* Format version of file
*/
version?: string;
}
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -11,15 +11,15 @@
*/
export interface AipInfoEmbargoModel {
/**
* Month number of embargo duration
*/
months?: number;
export interface AipInfoEmbargoModel {
/**
* Starting date of embargo period
*/
access?: string;
/**
* Month number of embargo duration
*/
months?: number;
/**
* Starting date of embargo period
*/
......
......@@ -3,16 +3,16 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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 { AipInfoEmbargoModel } from "./aip-info-embargo.model";
import { AipInfoEmbargoModel } from './aip-info-embargo.model';
export interface AipInfoModel {
export interface AipInfoModel {
/**
* The final access level of the package
*/
......@@ -22,21 +22,13 @@ export interface AipInfoModel {
*/
accessCurrentlyPublic?: boolean;
/**
* The organizational Unit ID of the information package
* The compliance level of the package
*/
organizationalUnitId?: string;
complianceLevel?: string;
/**
* The current access level, deducted from the final access level and an eventual embargo
*/
currentAccessLevel?: string;
/**
* The name of the package
*/
name?: string;
/**
* The compliance level of the package
*/
complianceLevel?: string;
/**
* The description of the package
*/
......@@ -46,6 +38,14 @@ export interface AipInfoModel {
* The license ID of the package
*/
licenseId?: string;
/**
* The name of the package
*/
name?: string;
/**
* The organizational Unit ID of the information package
*/
organizationalUnitId?: string;
/**
* The status of the package
*/
......
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -11,14 +11,14 @@
*/
export interface AipVirusCheckModel {
/**
* Result detail of virus check
*/
details?: string;
export interface AipVirusCheckModel {
/**
* Date of virus check execution
*/
checkDate?: string;
/**
* Result detail of virus check
*/
details?: string;
}
......@@ -3,101 +3,103 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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 { AipFileFormatModel } from "./aip-file-format.model";
import { AipInfoModel } from "./aip-info.model";
import { AipVirusCheckModel } from "./aip-virus-check.model";
import { ChangeInfoModel } from "./change-info.model";
import { AipChecksumCheckModel } from './aip-checksum-check.model';
import { AipFileFormatModel } from './aip-file-format.model';
import { AipInfoModel } from './aip-info.model';
import { AipVirusCheckModel } from './aip-virus-check.model';
import { ChangeInfoModel } from './change-info.model';
export interface AipModel {
export interface AipModel {
/**
* The checksum list of the AIP
* The _links_ list of the _aip_ resource
*/
checksums?: Array<string>;
virusCheck?: AipVirusCheckModel;
_links?: object;
/**
* The container type of the AIP
*/
aipContainer?: AipModel.AipContainerModelEnum;
/**
* if the AIP is an unit (AIU) or a collection (AIC)
*/
archivalUnit?: boolean;
/**
* The _links_ list of the _aip_ resource
* The storage URL of the AIP
*/
_links?: object;
archiveId?: string;
/**
* The size in human-readable format of the AIP
* The size in bytes of the AIP
*/
smartSize?: string;
archiveSize?: number;
checksumCheck?: AipChecksumCheckModel;
/**
* The source SIP IDs of the AIP
* The checksum list of the AIP
*/
sipIds?: Array<string>;
checksums?: Array<string>;
/**
* Number of AIP data files
* Number of AIPs in collection
*/
dataFileNumber?: number;
collectionSize?: number;
/**
* The container type of the AIP
* The creation info of the _aip_ resource (see <<change-info>>)
*/
aipContainer?: AipModel.AipContainerModelEnum;
creation?: ChangeInfoModel;
/**
* Number of AIP data files
*/
dataFileNumber?: number;
/**
* Mandatory step to approve the AIP disposition
*/
dispositionApproval?: boolean;
fileFormat?: AipFileFormatModel;
info?: AipInfoModel;
/**
* The size in bytes of the AIP
* The last updated info of the _aip_ resource (see <<change-info>>)
*/
archiveSize?: number;
lastUpdate?: ChangeInfoModel;
/**
* If AIP package is ready
*/
ready?: boolean;
/**
* The _aip_ resource identifier [https://en.wikipedia.org/wiki/Universally_unique_identifier[UUID]]
*/
resId?: string;
/**
* The storage URL of the AIP
* The retention duration in days of the AIP
*/
archiveId?: string;
retention?: number;
/**
* The end of the AIP retention
*/
retentionEnd?: Date;
/**
* If AIP package is ready
*/
ready?: boolean;
/**
* Number of AIPs in collection
*/
collectionSize?: number;
/**
* The last updated info of the _aip_ resource (see <<change-info>>)
* The source SIP IDs of the AIP
*/
lastUpdate?: ChangeInfoModel;
sipIds?: Array<string>;
/**
* The retention duration in human-readable format of the AIP
*/
smartRetention?: string;
/**
* The retention duration in days of the AIP
*/
retention?: number;
fileFormat?: AipFileFormatModel;
/**
* The creation info of the _aip_ resource (see <<change-info>>)
* The size in human-readable format of the AIP
*/
creation?: ChangeInfoModel;
info?: AipInfoModel;
smartSize?: string;
virusCheck?: AipVirusCheckModel;
}
export namespace AipModel {
export type AipContainerModelEnum = "UNDEFINED" | "ZIP" | "BAG_IT";
export type AipContainerModelEnum = 'UNDEFINED' | 'ZIP' | 'BAG_IT';
export const AipContainerModelEnum = {
UNDEFINED: "UNDEFINED" as AipContainerModelEnum,
ZIP: "ZIP" as AipContainerModelEnum,
BAGIT: "BAG_IT" as AipContainerModelEnum
UNDEFINED: 'UNDEFINED' as AipContainerModelEnum,
ZIP: 'ZIP' as AipContainerModelEnum,
BAGIT: 'BAG_IT' as AipContainerModelEnum
};
}
......@@ -3,20 +3,24 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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 { ChangeInfoModel } from "./change-info.model";
import { ChangeInfoModel } from './change-info.model';
export interface ApplicationRolesModel {
export interface ApplicationRolesModel {
/**
* The _links_ list of the _application-roles_ resource
*/
_links?: object;
/**
* The creation info of the _application-roles_ resource (see <<change-info>>)
*/
creation?: ChangeInfoModel;
/**
* The last updated info of the _application-roles_ resource (see <<change-info>>)
*/
......@@ -29,9 +33,5 @@ export interface ApplicationRolesModel {
* The _application-roles_ resource identifier [https://en.wikipedia.org/wiki/Universally_unique_identifier[UUID]]
*/
resId?: string;
/**
* The creation info of the _application-roles_ resource (see <<change-info>>)
*/
creation?: ChangeInfoModel;
}
/**
* DLCM-Solution
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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 { ChangeInfoModel } from "./change-info.model";
export interface BasicAuthClientsModel {
/**
* The password of basic authentification client
*/
password?: string;
/**
* The name of basic authentification client
*/
clientId?: string;
/**
* The _links_ list of the _basic-auth-clients_ resource
*/
_links?: object;
/**
* If the client credentials are expired
*/
credentialsNonExpired?: boolean;
/**
* The last updated info of the _basic-auth-clients_ resource (see <<change-info>>)
*/
lastUpdate?: ChangeInfoModel;
/**
* The linked person of basic authentification client
*/
personId?: string;
/**
* If the client account is expired
*/
accountNonExpired?: boolean;
/**
* The _basic-auth-clients_ resource identifier [https://en.wikipedia.org/wiki/Universally_unique_identifier[UUID]]
*/
resId?: string;
/**
* If the client account is enable
*/
enabled?: boolean;
/**
* The creation info of the _basic-auth-clients_ resource (see <<change-info>>)
*/
creation?: ChangeInfoModel;
/**
* The application roles of basic authentification client
*/
applicationRoles?: Array<string>;
/**
* If the client account is not locked
*/
accountNonLocked?: boolean;
}
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -14,7 +14,7 @@
/**
* The change info
*/
export interface ChangeInfoModel {
export interface ChangeInfoModel {
/**
* The date of the executed event
*/
......
......@@ -3,27 +3,27 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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 { PageModel } from "./page.model";
import { PageModel } from './page.model';
export interface CollectionModel {
export interface CollectionModel {
/**
* List the collection of the resources
*/
_data?: object;
/**
* Gives the total pages and the total available items of one resource
*/
_page?: PageModel;
/**
* All links available on the resource
*/
_links?: object;
/**
* Gives the total pages and the total available items of one resource
*/
_page?: PageModel;
}
......@@ -3,141 +3,141 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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 { AipInfoEmbargoModel } from "./aip-info-embargo.model";
import { ChangeInfoModel } from "./change-info.model";
import { AipInfoEmbargoModel } from './aip-info-embargo.model';
import { ChangeInfoModel } from './change-info.model';
export interface DepositsModel {
export interface DepositsModel {
/**
* The _links_ list of the _deposits_ resource
*/
_links?: object;
/**
* The access level of the deposit
*/
access?: DepositsModel.AccessModelEnum;
/**
* The _links_ list of the _deposits_ resource
* The submission agreement of the deposit
*/
_links?: object;
agreement?: boolean;
/**
* The preservation policy ID of the deposit
* If all data file are ready
*/
preservationPolicyId?: string;
allDataFileReady?: boolean;
/**
* Number of deposit data files
* The beginning of the deposit collection
*/
dataFileNumber?: number;
collectionBegin?: Date;
/**
* The description of the deposit
* The end of the deposit collection
*/
description?: string;
collectionEnd?: Date;
/**
* The title of the deposit
* Size of AIP collection
*/
title?: string;
collectionSize?: number;
/**
* The generated SIP DLCM ID of the deposit
* The creation info of the _deposits_ resource (see <<change-info>>)
*/
sipId?: string;
creation?: ChangeInfoModel;
/**
* The end of the deposit collection
* Number of deposit data files
*/
collectionEnd?: Date;
dataFileNumber?: number;
/**
* The organizational unit ID of the deposit
* The description of the deposit
*/
organizationalUnitId?: string;
description?: string;
/**
* The Digital Object Identifier (DOI) of the deposit
*/
doi?: string;
embargo?: AipInfoEmbargoModel;
/**
* If the deposit has an embargo
*/
hasEmbargo?: boolean;
/**
* The submission policy ID of the deposit
* The language ID of the deposit
*/
submissionPolicyId?: string;
languageId?: string;
/**
* The license ID of the deposit
* The last updated info of the _deposits_ resource (see <<change-info>>)
*/
licenseId?: string;
lastUpdate?: ChangeInfoModel;
/**
* The publication date of the deposit
* The license ID of the deposit
*/
publicationDate?: string;
licenseId?: string;
/**
* The creation info of the _deposits_ resource (see <<change-info>>)
* The organizational unit ID of the deposit
*/
creation?: ChangeInfoModel;
organizationalUnitId?: string;
/**
* The submission agreement of the deposit
* The preparation ID of the deposit
*/
agreement?: boolean;
preparationId?: string;
/**
* If all data file are ready
* The preservation policy ID of the deposit
*/
allDataFileReady?: boolean;
preservationPolicyId?: string;
/**
* The language ID of the deposit
* The publication date of the deposit
*/
languageId?: string;
publicationDate?: string;
/**
* The _deposits_ resource identifier [https://en.wikipedia.org/wiki/Universally_unique_identifier[UUID]]
*/
resId?: string;
/**
* The message related to the status
*/
statusMessage?: string;
/**
* The submission agreement of the deposit
*/
submissionAgreementId?: string;
/**
* Size of AIP collection
* The generated SIP DLCM ID of the deposit
*/
collectionSize?: number;
sipId?: string;
/**
* The last updated info of the _deposits_ resource (see <<change-info>>)
* The status of the deposit
*/
lastUpdate?: ChangeInfoModel;
status?: DepositsModel.StatusModelEnum;
/**
* The preparation ID of the deposit
* The message related to the status
*/
preparationId?: string;
embargo?: AipInfoEmbargoModel;
statusMessage?: string;
/**
* The beginning of the deposit collection
* The submission agreement of the deposit
*/
collectionBegin?: Date;
submissionAgreementId?: string;
/**
* The status of the deposit
* The submission policy ID of the deposit
*/
status?: DepositsModel.StatusModelEnum;
submissionPolicyId?: string;
/**
* The Digital Object Identifier (DOI) of the deposit
* The title of the deposit
*/
doi?: string;
title?: string;
}
export namespace DepositsModel {
export type AccessModelEnum = "PUBLIC" | "RESTRICTED" | "CLOSED";
export type AccessModelEnum = 'PUBLIC' | 'RESTRICTED' | 'CLOSED';
export const AccessModelEnum = {
PUBLIC: "PUBLIC" as AccessModelEnum,
RESTRICTED: "RESTRICTED" as AccessModelEnum,
CLOSED: "CLOSED" as AccessModelEnum
PUBLIC: 'PUBLIC' as AccessModelEnum,
RESTRICTED: 'RESTRICTED' as AccessModelEnum,
CLOSED: 'CLOSED' as AccessModelEnum
};
export type StatusModelEnum = "IN_ERROR" | "PAUSED" | "IN_PROGRESS" | "IN_VALIDATION" | "CHECKED" | "REJECTED" | "APPROVED" | "SUBMITTED" | "COMPLETED";
export type StatusModelEnum = 'IN_ERROR' | 'PAUSED' | 'IN_PROGRESS' | 'IN_VALIDATION' | 'CHECKED' | 'REJECTED' | 'APPROVED' | 'SUBMITTED' | 'COMPLETED';
export const StatusModelEnum = {
INERROR: "IN_ERROR" as StatusModelEnum,
PAUSED: "PAUSED" as StatusModelEnum,
INPROGRESS: "IN_PROGRESS" as StatusModelEnum,
INVALIDATION: "IN_VALIDATION" as StatusModelEnum,
CHECKED: "CHECKED" as StatusModelEnum,
REJECTED: "REJECTED" as StatusModelEnum,
APPROVED: "APPROVED" as StatusModelEnum,
SUBMITTED: "SUBMITTED" as StatusModelEnum,
COMPLETED: "COMPLETED" as StatusModelEnum
INERROR: 'IN_ERROR' as StatusModelEnum,
PAUSED: 'PAUSED' as StatusModelEnum,
INPROGRESS: 'IN_PROGRESS' as StatusModelEnum,
INVALIDATION: 'IN_VALIDATION' as StatusModelEnum,
CHECKED: 'CHECKED' as StatusModelEnum,
REJECTED: 'REJECTED' as StatusModelEnum,
APPROVED: 'APPROVED' as StatusModelEnum,
SUBMITTED: 'SUBMITTED' as StatusModelEnum,
COMPLETED: 'COMPLETED' as StatusModelEnum
};
}
......@@ -3,41 +3,41 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.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 { AipInfoModel } from "./aip-info.model";
import { ChangeInfoModel } from "./change-info.model";
import { AipInfoModel } from './aip-info.model';
import { ChangeInfoModel } from './change-info.model';
export interface DipModel {
/**
* The source AIP IDs of the DIP
*/
aipIds?: Array<string>;
export interface DipModel {
/**
* The _links_ list of the _dip_ resource
*/
_links?: object;
/**
* If DIP package is ready
* The source AIP IDs of the DIP
*/
ready?: boolean;
aipIds?: Array<string>;
/**
* The creation info of the _dip_ resource (see <<change-info>>)
*/
creation?: ChangeInfoModel;
info?: AipInfoModel;
/**
* The last updated info of the _dip_ resource (see <<change-info>>)
*/
lastUpdate?: ChangeInfoModel;
/**
* The _dip_ resource identifier [https://en.wikipedia.org/wiki/Universally_unique_identifier[UUID]]
* If DIP package is ready
*/
resId?: string;
ready?: boolean;
/**
* The creation info of the _dip_ resource (see <<change-info>>)
* The _dip_ resource identifier [https://en.wikipedia.org/wiki/Universally_unique_identifier[UUID]]
*/
creation?: ChangeInfoModel;
info?: AipInfoModel;
resId?: string;
}
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -11,7 +11,7 @@
*/
export interface DlcmAccessModel {
export interface DlcmAccessModel {
/**
* The _links_ list of the module, included its REST resources
*/
......
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -11,7 +11,7 @@
*/
export interface DlcmAdminModel {
export interface DlcmAdminModel {
/**
* The _links_ list of the module, included its REST resources
*/
......
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -11,7 +11,7 @@
*/
export interface DlcmArchivalStorageModel {
export interface DlcmArchivalStorageModel {
/**
* The _links_ list of the module, included its REST resources
*/
......
......@@ -3,7 +3,7 @@
* DLCM application wrapping all modules, All-In-One
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
......@@ -11,7 +11,7 @@
*/
export interface DlcmDataMgmtModel {
export interface DlcmDataMgmtModel {
/**
* The _links_ list of the module, included its REST resources
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment