/* Options: Date: 2025-09-08 02:06:20 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddSupportContact.* //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="/AddSupportContact") public static class AddSupportContact implements IReturn { public String name = null; public String email = null; public String gitHub = null; public String getName() { return name; } public AddSupportContact setName(String value) { this.name = value; return this; } public String getEmail() { return email; } public AddSupportContact setEmail(String value) { this.email = value; return this; } public String getGitHub() { return gitHub; } public AddSupportContact setGitHub(String value) { this.gitHub = value; return this; } private static Object responseType = SupportContact.class; public Object getResponseType() { return responseType; } } public static class SupportContact { public Integer id = null; public Integer customerId = null; public String name = null; public String email = null; public String gitHub = null; public Integer getId() { return id; } public SupportContact setId(Integer value) { this.id = value; return this; } public Integer getCustomerId() { return customerId; } public SupportContact setCustomerId(Integer value) { this.customerId = value; return this; } public String getName() { return name; } public SupportContact setName(String value) { this.name = value; return this; } public String getEmail() { return email; } public SupportContact setEmail(String value) { this.email = value; return this; } public String getGitHub() { return gitHub; } public SupportContact setGitHub(String value) { this.gitHub = value; return this; } } }