/* Options: Date: 2025-05-04 22:23:03 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SendEndpointMessage.* //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="/chat/endpoint/message") public static class SendEndpointMessage { public String sessionId = null; public String endpointId = null; public String body = null; public String attachmentUri = null; public String attachmentContentType = null; public String sender = null; public String displayName = null; public String getSessionId() { return sessionId; } public SendEndpointMessage setSessionId(String value) { this.sessionId = value; return this; } public String getEndpointId() { return endpointId; } public SendEndpointMessage setEndpointId(String value) { this.endpointId = value; return this; } public String getBody() { return body; } public SendEndpointMessage setBody(String value) { this.body = value; return this; } public String getAttachmentUri() { return attachmentUri; } public SendEndpointMessage setAttachmentUri(String value) { this.attachmentUri = value; return this; } public String getAttachmentContentType() { return attachmentContentType; } public SendEndpointMessage setAttachmentContentType(String value) { this.attachmentContentType = value; return this; } public String getSender() { return sender; } public SendEndpointMessage setSender(String value) { this.sender = value; return this; } public String getDisplayName() { return displayName; } public SendEndpointMessage setDisplayName(String value) { this.displayName = value; return this; } } }