/* Options: Date: 2026-06-13 03:58:44 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: RfpCatalogSearchRequest.* //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/Catalog", Verbs="GET,OPTIONS") public static class RfpCatalogSearchRequest implements IReturn { public String Type = null; public String Q = null; public String getType() { return Type; } public RfpCatalogSearchRequest setType(String value) { this.Type = value; return this; } public String getQ() { return Q; } public RfpCatalogSearchRequest setQ(String value) { this.Q = value; return this; } private static Object responseType = RfpCatalogSearchResponse.class; public Object getResponseType() { return responseType; } } public static class RfpCatalogSearchResponse { public ResponseStatus ResponseStatus = null; public ArrayList Items = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public RfpCatalogSearchResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getItems() { return Items; } public RfpCatalogSearchResponse setItems(ArrayList value) { this.Items = value; return this; } } public static class CatalogItem { public Integer Id = null; public String Name = null; public Integer getId() { return Id; } public CatalogItem setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public CatalogItem setName(String value) { this.Name = value; return this; } } }