/* Options: Date: 2026-06-13 13:39:23 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProcessIngestIndustryLossRequest.* //ExcludeTypes: //DefaultImports: */ export class ProcessIngestIndustryLossRequest { // @ApiMember(IsRequired=true) public name: string; // @ApiMember(IsRequired=true) public perspectiveIds: number[] = []; // @ApiMember(IsRequired=true) public container: string; // @ApiMember(IsRequired=true) public blobName: string; public ilEventSetId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ProcessIngestIndustryLossRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }