/* Options: Date: 2025-01-08 03:20:59 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CheckQuota.* //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.* @ValidateRequest(Validator="IsAuthenticated") open class CheckQuota : IReturn { open var images:Int? = null open var width:Int? = null open var height:Int? = null companion object { private val responseType = CheckQuotaResponse::class.java } override fun getResponseType(): Any? = CheckQuota.responseType } open class CheckQuotaResponse { open var timeRemaining:TimeSpan? = null open var creditsUsed:Int? = null open var creditsRequested:Int? = null open var creditsRemaining:Int? = null open var dailyQuota:Int? = null open var requestedDetails:String? = null }