/* Options: Date: 2026-06-13 04:04:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RfpContactsRequest.* //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="/v1/Rfp/Contacts", Verbs="GET,OPTIONS") public static class RfpContactsRequest implements IReturn { public String Tag = null; public Boolean All = null; public String getTag() { return Tag; } public RfpContactsRequest setTag(String value) { this.Tag = value; return this; } public Boolean isAll() { return All; } public RfpContactsRequest setAll(Boolean value) { this.All = value; return this; } private static Object responseType = RfpContactsResponse.class; public Object getResponseType() { return responseType; } } public static class RfpContactsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Contacts = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public RfpContactsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getContacts() { return Contacts; } public RfpContactsResponse setContacts(ArrayList value) { this.Contacts = value; return this; } } public static class RfpContactSummary { public Integer ContactId = null; public String Name = null; public BigDecimal Rate = null; public String Tags = null; public Integer getContactId() { return ContactId; } public RfpContactSummary setContactId(Integer value) { this.ContactId = value; return this; } public String getName() { return Name; } public RfpContactSummary setName(String value) { this.Name = value; return this; } public BigDecimal getRate() { return Rate; } public RfpContactSummary setRate(BigDecimal value) { this.Rate = value; return this; } public String getTags() { return Tags; } public RfpContactSummary setTags(String value) { this.Tags = value; return this; } } }