/* Options: Date: 2025-12-05 23:54:29 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.my1stchoicefs.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AuctionAvailability.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class AuctionAvailability implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class AuctionAvailabilityResponse { public UUID DealerId = null; public String DealerName = null; public Double Result = null; public UUID getDealerId() { return DealerId; } public AuctionAvailabilityResponse setDealerId(UUID value) { this.DealerId = value; return this; } public String getDealerName() { return DealerName; } public AuctionAvailabilityResponse setDealerName(String value) { this.DealerName = value; return this; } public Double getResult() { return Result; } public AuctionAvailabilityResponse setResult(Double value) { this.Result = value; return this; } } }