/* Options: Date: 2026-08-01 04:14:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CoverageSwapViewRequest.* //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="/v1/coverage/swap/{Token}", Verbs="GET") public static class CoverageSwapViewRequest implements IReturn { public String Token = null; public String getToken() { return Token; } public CoverageSwapViewRequest setToken(String value) { this.Token = value; return this; } private static Object responseType = CoverageSwapViewResponse.class; public Object getResponseType() { return responseType; } } public static class CoverageSwapViewResponse { public String State = null; public CoverageSwapSideInfo You = null; public CoverageSwapSideInfo Them = null; public Boolean Directed = null; public String WithdrawnBy = null; public ResponseStatus ResponseStatus = null; public String getState() { return State; } public CoverageSwapViewResponse setState(String value) { this.State = value; return this; } public CoverageSwapSideInfo getYou() { return You; } public CoverageSwapViewResponse setYou(CoverageSwapSideInfo value) { this.You = value; return this; } public CoverageSwapSideInfo getThem() { return Them; } public CoverageSwapViewResponse setThem(CoverageSwapSideInfo value) { this.Them = value; return this; } public Boolean isDirected() { return Directed; } public CoverageSwapViewResponse setDirected(Boolean value) { this.Directed = value; return this; } public String getWithdrawnBy() { return WithdrawnBy; } public CoverageSwapViewResponse setWithdrawnBy(String value) { this.WithdrawnBy = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public CoverageSwapViewResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class CoverageSwapSideInfo { public String Name = null; public String DateText = null; public String JobName = null; public Boolean Consented = null; public String getName() { return Name; } public CoverageSwapSideInfo setName(String value) { this.Name = value; return this; } public String getDateText() { return DateText; } public CoverageSwapSideInfo setDateText(String value) { this.DateText = value; return this; } public String getJobName() { return JobName; } public CoverageSwapSideInfo setJobName(String value) { this.JobName = value; return this; } public Boolean isConsented() { return Consented; } public CoverageSwapSideInfo setConsented(Boolean value) { this.Consented = value; return this; } } }