/* Options: Date: 2025-05-04 20:29:45 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FindDuplicates.* //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="/endpoints/duplicates") public static class FindDuplicates implements IReturn { /** * The account ID to check */ @ApiMember(Description="The account ID to check") public String accountId = null; /** * The field name to search for */ @ApiMember(Description="The field name to search for") public String endpointFieldName = null; public String getAccountId() { return accountId; } public FindDuplicates setAccountId(String value) { this.accountId = value; return this; } public String getEndpointFieldName() { return endpointFieldName; } public FindDuplicates setEndpointFieldName(String value) { this.endpointFieldName = value; return this; } private static Object responseType = FindDuplicatesResponse.class; public Object getResponseType() { return responseType; } } public static class FindDuplicatesResponse { public ArrayList duplicates = null; public ArrayList getDuplicates() { return duplicates; } public FindDuplicatesResponse setDuplicates(ArrayList value) { this.duplicates = value; return this; } } public static class FindDuplicateEntry { public String fieldValue = null; public ArrayList endpoints = null; public String getFieldValue() { return fieldValue; } public FindDuplicateEntry setFieldValue(String value) { this.fieldValue = value; return this; } public ArrayList getEndpoints() { return endpoints; } public FindDuplicateEntry setEndpoints(ArrayList value) { this.endpoints = value; return this; } } }