/* Options: Date: 2025-09-22 22:13:45 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetProduct.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/products/{id}", Verbs="GET") public static class GetProduct implements IReturn { public String id = null; public String getId() { return id; } public GetProduct setId(String value) { this.id = value; return this; } private static Object responseType = ProductDto.class; public Object getResponseType() { return responseType; } } public static class ProductDto { public String id = null; public String name = null; public String description = null; public String longDescription = null; public String details = null; public BigDecimal price = null; public String productType = null; public Integer year = null; public String applicationId = null; public String requiredProductId = null; public String scope = null; public String feature = null; public Boolean isVisible = null; public String iconUrl = null; public HashMap volumeDiscounts = null; public String getId() { return id; } public ProductDto setId(String value) { this.id = value; return this; } public String getName() { return name; } public ProductDto setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public ProductDto setDescription(String value) { this.description = value; return this; } public String getLongDescription() { return longDescription; } public ProductDto setLongDescription(String value) { this.longDescription = value; return this; } public String getDetails() { return details; } public ProductDto setDetails(String value) { this.details = value; return this; } public BigDecimal getPrice() { return price; } public ProductDto setPrice(BigDecimal value) { this.price = value; return this; } public String getProductType() { return productType; } public ProductDto setProductType(String value) { this.productType = value; return this; } public Integer getYear() { return year; } public ProductDto setYear(Integer value) { this.year = value; return this; } public String getApplicationId() { return applicationId; } public ProductDto setApplicationId(String value) { this.applicationId = value; return this; } public String getRequiredProductId() { return requiredProductId; } public ProductDto setRequiredProductId(String value) { this.requiredProductId = value; return this; } public String getScope() { return scope; } public ProductDto setScope(String value) { this.scope = value; return this; } public String getFeature() { return feature; } public ProductDto setFeature(String value) { this.feature = value; return this; } public Boolean getIsVisible() { return isVisible; } public ProductDto setIsVisible(Boolean value) { this.isVisible = value; return this; } public String getIconUrl() { return iconUrl; } public ProductDto setIconUrl(String value) { this.iconUrl = value; return this; } public HashMap getVolumeDiscounts() { return volumeDiscounts; } public ProductDto setVolumeDiscounts(HashMap value) { this.volumeDiscounts = value; return this; } } }