/* Options: Date: 2026-09-21 23:49:34 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ShowArea.* //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="/ShowArea/{AreaID}/{ColorStart}/{ColorStop}/{Duration}") public static class ShowArea { /** * Area ID */ @ApiMember(Description="Area ID", IsRequired=true) public Integer AreaID = null; /** * HTML Color code (e.g. FF00FF) of the first pixel */ @ApiMember(Description="HTML Color code (e.g. FF00FF) of the first pixel", IsRequired=true) public String ColorStart = null; /** * HTML Color code (e.g. FF00FF) of the last pixel */ @ApiMember(Description="HTML Color code (e.g. FF00FF) of the last pixel", IsRequired=true) public String ColorStop = null; /** * Duration in seconds */ @ApiMember(Description="Duration in seconds", IsRequired=true) public Integer Duration = null; /** * Optional: name of the owner of the color/command to allow color sharing */ @ApiMember(Description="Optional: name of the owner of the color/command to allow color sharing") public String Owner = null; public Integer getAreaID() { return AreaID; } public ShowArea setAreaID(Integer value) { this.AreaID = value; return this; } public String getColorStart() { return ColorStart; } public ShowArea setColorStart(String value) { this.ColorStart = value; return this; } public String getColorStop() { return ColorStop; } public ShowArea setColorStop(String value) { this.ColorStop = value; return this; } public Integer getDuration() { return Duration; } public ShowArea setDuration(Integer value) { this.Duration = value; return this; } public String getOwner() { return Owner; } public ShowArea setOwner(String value) { this.Owner = value; return this; } } }