/* Options: Date: 2026-06-13 13:30:22 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: GetExpectedLossLastModifiedDateRequest.* //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/last-modified-date", Verbs="GET") public static class GetExpectedLossLastModifiedDateRequest 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; public String getSourceDealSystem() { return sourceDealSystem; } public GetExpectedLossLastModifiedDateRequest setSourceDealSystem(String value) { this.sourceDealSystem = value; return this; } private static Object responseType = GetExpectedLossLastModifiedDateResponse.class; public Object getResponseType() { return responseType; } } public static class GetExpectedLossLastModifiedDateResponse { public Date lastModifiedUtcDate = null; public ResponseStatus responseStatus = null; public Date getLastModifiedUtcDate() { return lastModifiedUtcDate; } public GetExpectedLossLastModifiedDateResponse setLastModifiedUtcDate(Date value) { this.lastModifiedUtcDate = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetExpectedLossLastModifiedDateResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }