/* Options: Date: 2026-06-13 13:14:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ProcessIngestIndustryLossRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { public static class ProcessIngestIndustryLossRequest { @ApiMember(IsRequired=true) public String name = null; @ApiMember(IsRequired=true) public ArrayList perspectiveIds = new ArrayList(); @ApiMember(IsRequired=true) public String container = null; @ApiMember(IsRequired=true) public String blobName = null; public Long ilEventSetId = null; public String getName() { return name; } public ProcessIngestIndustryLossRequest setName(String value) { this.name = value; return this; } public ArrayList getPerspectiveIds() { return perspectiveIds; } public ProcessIngestIndustryLossRequest setPerspectiveIds(ArrayList value) { this.perspectiveIds = value; return this; } public String getContainer() { return container; } public ProcessIngestIndustryLossRequest setContainer(String value) { this.container = value; return this; } public String getBlobName() { return blobName; } public ProcessIngestIndustryLossRequest setBlobName(String value) { this.blobName = value; return this; } public Long getIlEventSetId() { return ilEventSetId; } public ProcessIngestIndustryLossRequest setIlEventSetId(Long value) { this.ilEventSetId = value; return this; } } }