/* Options: Date: 2025-09-14 03:23:37 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EAccountingUpdatePricesMapping.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/eaccounting/article/mappings", Verbs="PUT") @ValidateRequest(Validator="IsAuthenticated") open class EAccountingUpdatePricesMapping : IReturn, ICompany { open var ServicePriceMappings:ArrayList? = null /** * Company to show services for */ @ApiMember(Description="Company to show services for") override var CompanyId:UUID? = null companion object { private val responseType = ServicePriceMappingResponse::class.java } override fun getResponseType(): Any? = EAccountingUpdatePricesMapping.responseType } open class ServicePriceMappingResponse { /** * The company id */ @ApiMember(Description="The company id") open var CompanyId:UUID? = null open var Id:UUID? = null /** * The price id */ @ApiMember(Description="The price id") open var PriceId:Int? = null /** * The external reference */ @ApiMember(Description="The external reference") open var ExternalReference:String? = null /** * The Reference Type */ @ApiMember(Description="The Reference Type") open var ReferenceType:String? = null } interface ICompany { var CompanyId:UUID? } open class ServicePriceMapping { /** * The id */ @ApiMember(Description="The id") open var Id:UUID? = null /** * The price id */ @ApiMember(Description="The price id") open var PriceId:Int? = null /** * The Reference Type: StripeArticle = 1, EAccountingArticle = 2 */ @ApiMember(Description="The Reference Type: StripeArticle = 1, EAccountingArticle = 2") open var ReferenceType:String? = null /** * The external reference; Values for EAccountingArticle, StripeArticle */ @ApiMember(Description="The external reference; Values for EAccountingArticle, StripeArticle") open var ExternalReference:String? = null }