/* Options: Date: 2024-05-04 05:36:24 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetUsersByEmails.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/users/by-email") public static class GetUsersByEmails implements IReturn, IGet { public ArrayList emails = null; public ArrayList getEmails() { return emails; } public GetUsersByEmails setEmails(ArrayList value) { this.emails = value; return this; } private static Object responseType = GetUsersByEmailsResponse.class; public Object getResponseType() { return responseType; } } public static class GetUsersByEmailsResponse { public ArrayList results = null; public ResponseStatus responseStatus = null; public ArrayList getResults() { return results; } public GetUsersByEmailsResponse setResults(ArrayList value) { this.results = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetUsersByEmailsResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class UserRef { public Integer id = null; public String userName = null; public String email = null; public Integer refId = null; public String refSource = null; public String refUrn = null; public Integer getId() { return id; } public UserRef setId(Integer value) { this.id = value; return this; } public String getUserName() { return userName; } public UserRef setUserName(String value) { this.userName = value; return this; } public String getEmail() { return email; } public UserRef setEmail(String value) { this.email = value; return this; } public Integer getRefId() { return refId; } public UserRef setRefId(Integer value) { this.refId = value; return this; } public String getRefSource() { return refSource; } public UserRef setRefSource(String value) { this.refSource = value; return this; } public String getRefUrn() { return refUrn; } public UserRef setRefUrn(String value) { this.refUrn = value; return this; } } }