/* Options: Date: 2024-05-11 22:05:26 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: HelloImage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route("/hello-image/{Name}") public static class HelloImage implements IReturn { public String name = null; public String format = null; public Integer width = null; public Integer height = null; public Integer fontSize = null; public String fontFamily = null; public String foreground = null; public String background = null; public String getName() { return name; } public HelloImage setName(String value) { this.name = value; return this; } public String getFormat() { return format; } public HelloImage setFormat(String value) { this.format = value; return this; } public Integer getWidth() { return width; } public HelloImage setWidth(Integer value) { this.width = value; return this; } public Integer getHeight() { return height; } public HelloImage setHeight(Integer value) { this.height = value; return this; } public Integer getFontSize() { return fontSize; } public HelloImage setFontSize(Integer value) { this.fontSize = value; return this; } public String getFontFamily() { return fontFamily; } public HelloImage setFontFamily(String value) { this.fontFamily = value; return this; } public String getForeground() { return foreground; } public HelloImage setForeground(String value) { this.foreground = value; return this; } public String getBackground() { return background; } public HelloImage setBackground(String value) { this.background = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }