/* Options: Date: 2024-07-03 12:43:02 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ServicePricesMappingQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/services/prices/mappings", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class ServicePricesMappingQuery : IReturn, ICompany { /** * Company to show services for */ @ApiMember(Description="Company to show services for") var CompanyId:UUID? = null /** * ReferenceType */ @ApiMember(Description="ReferenceType") var ReferenceType:String? = null companion object { private val responseType = ServicePriceMappingResponse::class.java } override fun getResponseType(): Any? = ServicePricesMappingQuery.responseType } open class ServicePriceMappingResponse { /** * The company id */ @ApiMember(Description="The company id") var CompanyId:UUID? = null var Id:UUID? = null /** * The price id */ @ApiMember(Description="The price id") var PriceId:Int? = null /** * The external reference */ @ApiMember(Description="The external reference") var ExternalReference:String? = null /** * The Reference Type */ @ApiMember(Description="The Reference Type") var ReferenceType:String? = null } open interface ICompany { var CompanyId:UUID? }