/* Options: Date: 2025-01-08 03:38:18 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CheckQuota.* //ExcludeTypes: //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.*; public class dtos { @ValidateRequest(Validator="IsAuthenticated") public static class CheckQuota implements IReturn { public Integer images = null; public Integer width = null; public Integer height = null; public Integer getImages() { return images; } public CheckQuota setImages(Integer value) { this.images = value; return this; } public Integer getWidth() { return width; } public CheckQuota setWidth(Integer value) { this.width = value; return this; } public Integer getHeight() { return height; } public CheckQuota setHeight(Integer value) { this.height = value; return this; } private static Object responseType = CheckQuotaResponse.class; public Object getResponseType() { return responseType; } } public static class CheckQuotaResponse { public TimeSpan timeRemaining = null; public Integer creditsUsed = null; public Integer creditsRequested = null; public Integer creditsRemaining = null; public Integer dailyQuota = null; public String requestedDetails = null; public TimeSpan getTimeRemaining() { return timeRemaining; } public CheckQuotaResponse setTimeRemaining(TimeSpan value) { this.timeRemaining = value; return this; } public Integer getCreditsUsed() { return creditsUsed; } public CheckQuotaResponse setCreditsUsed(Integer value) { this.creditsUsed = value; return this; } public Integer getCreditsRequested() { return creditsRequested; } public CheckQuotaResponse setCreditsRequested(Integer value) { this.creditsRequested = value; return this; } public Integer getCreditsRemaining() { return creditsRemaining; } public CheckQuotaResponse setCreditsRemaining(Integer value) { this.creditsRemaining = value; return this; } public Integer getDailyQuota() { return dailyQuota; } public CheckQuotaResponse setDailyQuota(Integer value) { this.dailyQuota = value; return this; } public String getRequestedDetails() { return requestedDetails; } public CheckQuotaResponse setRequestedDetails(String value) { this.requestedDetails = value; return this; } } }