/* Options: Date: 2025-07-04 07:50:11 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateStorageSystem.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UpdateStorageSystemResponse { public IsSucces: boolean; public DocumentID: string; public ErrorMessages: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UpdateStorageSystem implements IReturn { public DocumentID: string; public OptimizeForNewCreatedFiles: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateStorageSystem'; } public getMethod() { return 'POST'; } public createResponse() { return new UpdateStorageSystemResponse(); } }