/* Options: Date: 2026-06-13 13:18:32 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: IngestIndustryLossRequest.* //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 { @Route(Path="/riskstore/industryloss/ingest", Verbs="POST") public static class IngestIndustryLossRequest implements IReturnVoid, IPost { @ApiMember(IsRequired=true) public Long eventSourceId = null; @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; @ApiMember(IsRequired=true) public String sourceSystem = null; public Long getEventSourceId() { return eventSourceId; } public IngestIndustryLossRequest setEventSourceId(Long value) { this.eventSourceId = value; return this; } public String getName() { return name; } public IngestIndustryLossRequest setName(String value) { this.name = value; return this; } public ArrayList getPerspectiveIds() { return perspectiveIds; } public IngestIndustryLossRequest setPerspectiveIds(ArrayList value) { this.perspectiveIds = value; return this; } public String getContainer() { return container; } public IngestIndustryLossRequest setContainer(String value) { this.container = value; return this; } public String getBlobName() { return blobName; } public IngestIndustryLossRequest setBlobName(String value) { this.blobName = value; return this; } public String getSourceSystem() { return sourceSystem; } public IngestIndustryLossRequest setSourceSystem(String value) { this.sourceSystem = value; return this; } } }