/* Options: Date: 2025-12-06 05:48:08 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: ConversationHeaderRequest.* //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/ConversationHeader", Verbs="POST,OPTIONS") public static class ConversationHeaderRequest implements IReturn { public ConversationHeader ConversationHeader = null; public ConversationHeader getConversationHeader() { return ConversationHeader; } public ConversationHeaderRequest setConversationHeader(ConversationHeader value) { this.ConversationHeader = value; return this; } private static Object responseType = ConversationHeaderResponse.class; public Object getResponseType() { return responseType; } } public static class ConversationHeaderResponse { public ResponseStatus ResponseStatus = null; public ConversationHeader ConversationHeader = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ConversationHeaderResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ConversationHeader getConversationHeader() { return ConversationHeader; } public ConversationHeaderResponse setConversationHeader(ConversationHeader value) { this.ConversationHeader = value; return this; } } public static class ConversationHeader { public UUID ConversationHeaderId = null; public String TableName = null; public String FieldName = null; public Integer RecordId = null; public Boolean AgentHasRead = null; public Boolean AdminHasRead = null; public UUID getConversationHeaderId() { return ConversationHeaderId; } public ConversationHeader setConversationHeaderId(UUID value) { this.ConversationHeaderId = value; return this; } public String getTableName() { return TableName; } public ConversationHeader setTableName(String value) { this.TableName = value; return this; } public String getFieldName() { return FieldName; } public ConversationHeader setFieldName(String value) { this.FieldName = value; return this; } public Integer getRecordId() { return RecordId; } public ConversationHeader setRecordId(Integer value) { this.RecordId = value; return this; } public Boolean isAgentHasRead() { return AgentHasRead; } public ConversationHeader setAgentHasRead(Boolean value) { this.AgentHasRead = value; return this; } public Boolean isAdminHasRead() { return AdminHasRead; } public ConversationHeader setAdminHasRead(Boolean value) { this.AdminHasRead = value; return this; } } }