/* Options: Date: 2025-12-06 09:44:21 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: SmartsheetsSplitRequest.* //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/SmartsheetsSplit", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/SmartsheetsSplit/{PolicyNumber}/{TransactionId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class SmartsheetsSplitRequest implements IReturn { public String PolicyNumber = null; public ArrayList SmartsheetsSplit = new ArrayList(); public String TransactionId = null; public String getPolicyNumber() { return PolicyNumber; } public SmartsheetsSplitRequest setPolicyNumber(String value) { this.PolicyNumber = value; return this; } public ArrayList getSmartsheetsSplit() { return SmartsheetsSplit; } public SmartsheetsSplitRequest setSmartsheetsSplit(ArrayList value) { this.SmartsheetsSplit = value; return this; } public String getTransactionId() { return TransactionId; } public SmartsheetsSplitRequest setTransactionId(String value) { this.TransactionId = value; return this; } private static Object responseType = SmartsheetsSplitResponse.class; public Object getResponseType() { return responseType; } } public static class SmartsheetsSplitResponse { public ResponseStatus ResponseStatus = null; public ArrayList SmartsheetsSplit = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SmartsheetsSplitResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getSmartsheetsSplit() { return SmartsheetsSplit; } public SmartsheetsSplitResponse setSmartsheetsSplit(ArrayList value) { this.SmartsheetsSplit = value; return this; } } public static class SmartsheetsSplit { public Integer SmartsheetSplitId = null; public Integer AgentId = null; public Integer Split = null; public String PolicyNumber = null; public String FullName = null; public String TransactionId = null; public Integer getSmartsheetSplitId() { return SmartsheetSplitId; } public SmartsheetsSplit setSmartsheetSplitId(Integer value) { this.SmartsheetSplitId = value; return this; } public Integer getAgentId() { return AgentId; } public SmartsheetsSplit setAgentId(Integer value) { this.AgentId = value; return this; } public Integer getSplit() { return Split; } public SmartsheetsSplit setSplit(Integer value) { this.Split = value; return this; } public String getPolicyNumber() { return PolicyNumber; } public SmartsheetsSplit setPolicyNumber(String value) { this.PolicyNumber = value; return this; } public String getFullName() { return FullName; } public SmartsheetsSplit setFullName(String value) { this.FullName = value; return this; } public String getTransactionId() { return TransactionId; } public SmartsheetsSplit setTransactionId(String value) { this.TransactionId = value; return this; } } }