/* Options: Date: 2025-05-12 16:01:16 Version: 8.53 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: PostObjectToChannel.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/channels/{Channel}/object") public static class PostObjectToChannel implements IReturnVoid { public String toUserId = null; public String channel = null; public String selector = null; public CustomType customType = null; public SetterType setterType = null; public String getToUserId() { return toUserId; } public PostObjectToChannel setToUserId(String value) { this.toUserId = value; return this; } public String getChannel() { return channel; } public PostObjectToChannel setChannel(String value) { this.channel = value; return this; } public String getSelector() { return selector; } public PostObjectToChannel setSelector(String value) { this.selector = value; return this; } public CustomType getCustomType() { return customType; } public PostObjectToChannel setCustomType(CustomType value) { this.customType = value; return this; } public SetterType getSetterType() { return setterType; } public PostObjectToChannel setSetterType(SetterType value) { this.setterType = value; return this; } } public static class CustomType { public Integer id = null; public String name = null; public Integer getId() { return id; } public CustomType setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public CustomType setName(String value) { this.name = value; return this; } } public static class SetterType { public Integer id = null; public String name = null; public Integer getId() { return id; } public SetterType setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public SetterType setName(String value) { this.name = value; return this; } } }