/* Options: Date: 2025-09-14 13:54:51 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: EAccountingTermsOfPaymentQuery.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/eaccounting/termsofpayments", Verbs="GET") open class EAccountingTermsOfPaymentQuery : IReturn>, ICompany { open var TermsOfPaymentTypeId:TermsOfPaymentTypes? = null /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") override var CompanyId:UUID? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = EAccountingTermsOfPaymentQuery.responseType } interface ICompany { var CompanyId:UUID? } enum class TermsOfPaymentTypes { Normal, CurrentMonth, Cash, CardPayment, DigitalWallet, PaymentServiceProvider, } open class EAccountingTermsOfPaymentQueryResponse { open var Id:String? = null open var Name:String? = null open var NameEnglish:String? = null open var NumberOfDays:Int? = null open var TermsOfPaymentTypeId:Int? = null open var TermsOfPaymentTypeText:String? = null open var AvailableForSales:Boolean? = null open var AvailableForPurchase:Boolean? = null }