/* Options: Date: 2025-12-06 06:17:15 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://1fetch.api.client.prod.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CheckAccount.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/checkaccount", Verbs="GET") open class CheckAccount : ApiServiceRequest(), IReturn, ILogRequest { companion object { private val responseType = CheckAccountResponse::class.java } override fun getResponseType(): Any? = CheckAccount.responseType } open class CheckAccountResponse : ApiServiceResponse() { /** * The total monthly limit for account payments, will be negative if there is no limit */ @ApiMember(Description="The total monthly limit for account payments, will be negative if there is no limit") var AccountLimit:BigDecimal? = null /** * The amount that can still be used this month, will be negative if there is no account limit */ @ApiMember(Description="The amount that can still be used this month, will be negative if there is no account limit") var AccountRemaining:BigDecimal? = null /** * Shows if this account is allowed to place real orders or quotes */ @ApiMember(Description="Shows if this account is allowed to place real orders or quotes") var AllowDataProcessing:Boolean? = null } open class ApiServiceRequest : IServiceRequest, IHasApiKey { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var ApiKey:String? = null } open interface IServiceRequest { } open interface IHasApiKey { var ApiKey:String? } open interface ILogRequest { } open class ApiServiceResponse : IServiceResponse { /** * Information about the response. */ @ApiMember(Description="Information about the response.", IsRequired=true) var Description:String? = null /** * Heading or summary of the response. */ @ApiMember(Description="Heading or summary of the response.", IsRequired=true) var Heading:String? = null /** * Did the intended operation for this response complete successfully? */ @ApiMember(DataType="boolean", Description="Did the intended operation for this response complete successfully?", IsRequired=true) var WasSuccessful:Boolean? = null }