/* Options: Date: 2024-07-03 13:19:47 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SendGetStartedMessage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/messages/getstarted", Verbs="PUT") public static class SendGetStartedMessage implements IReturn { private static Object responseType = SendGetStartedMessageResponse.class; public Object getResponseType() { return responseType; } } public static class SendGetStartedMessageResponse { public Integer Companies = null; public Integer SentCount = null; public ResponseStatus ResponseStatus = null; public Integer getCompanies() { return Companies; } public SendGetStartedMessageResponse setCompanies(Integer value) { this.Companies = value; return this; } public Integer getSentCount() { return SentCount; } public SendGetStartedMessageResponse setSentCount(Integer value) { this.SentCount = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public SendGetStartedMessageResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }