/* Options: Date: 2025-09-14 05:26:04 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: EaccountingUserToken.* //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/token", Verbs="GET") open class EaccountingUserToken : IReturn, ICompany { override var CompanyId:UUID? = null companion object { private val responseType = EaccountingToken::class.java } override fun getResponseType(): Any? = EaccountingUserToken.responseType } open class EaccountingToken { open var AccessToken:String? = null open var RefreshToken:String? = null open var TokenType:String? = null open var ExpiresIn:Int? = null open var ExpiresAt:Date? = null } interface ICompany { var CompanyId:UUID? }