/* Options: Date: 2025-10-27 21:33:26 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GrandComWebhook.* //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="/communication/message/grandcom/webhook", Verbs="POST GET") public static class GrandComWebhook implements IReturnVoid { public String MessageId = null; public String UserRef = null; public String Status = null; public String getMessageId() { return MessageId; } public GrandComWebhook setMessageId(String value) { this.MessageId = value; return this; } public String getUserRef() { return UserRef; } public GrandComWebhook setUserRef(String value) { this.UserRef = value; return this; } public String getStatus() { return Status; } public GrandComWebhook setStatus(String value) { this.Status = value; return this; } } }