/* Options: Date: 2026-06-13 13:32:43 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: GetDealExpectedLossesChangedSinceRequest.* //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/eventset/deal-expected-loss-changed-since", Verbs="GET") public static class GetDealExpectedLossesChangedSinceRequest implements IReturn, IGet { /** * The source deal system (IGN) to get the date for */ @ApiMember(DataType="string", Description="The source deal system (IGN) to get the date for", IsRequired=true) public String sourceDealSystem = null; /** * The date to get the changes since */ @ApiMember(DataType="string", Description="The date to get the changes since", Format="date-time", IsRequired=true) public Date sinceSysStartUtc = null; public String getSourceDealSystem() { return sourceDealSystem; } public GetDealExpectedLossesChangedSinceRequest setSourceDealSystem(String value) { this.sourceDealSystem = value; return this; } public Date getSinceSysStartUtc() { return sinceSysStartUtc; } public GetDealExpectedLossesChangedSinceRequest setSinceSysStartUtc(Date value) { this.sinceSysStartUtc = value; return this; } private static Object responseType = GetDealExpectedLossesChangedSinceResponse.class; public Object getResponseType() { return responseType; } } public static class GetDealExpectedLossesChangedSinceResponse { public ArrayList changes = null; public ResponseStatus responseStatus = null; public ArrayList getChanges() { return changes; } public GetDealExpectedLossesChangedSinceResponse setChanges(ArrayList value) { this.changes = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetDealExpectedLossesChangedSinceResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class Change { public String sourceDealId = null; public Date sysStartUtc = null; public String getSourceDealId() { return sourceDealId; } public Change setSourceDealId(String value) { this.sourceDealId = value; return this; } public Date getSysStartUtc() { return sysStartUtc; } public Change setSysStartUtc(Date value) { this.sysStartUtc = value; return this; } } }