/* Options: Date: 2026-08-01 16:49:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dmsshow.kyocerasolutions.cz //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: IsUserBasedLicense.* //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 { @Route(Path="/isuserbased") public static class IsUserBasedLicense implements IReturn { private static Object responseType = IsUserBasedLicenseResponse.class; public Object getResponseType() { return responseType; } } public static class IsUserBasedLicenseResponse { public Boolean IsUserBased = null; public Boolean getIsUserBased() { return IsUserBased; } public IsUserBasedLicenseResponse setIsUserBased(Boolean value) { this.IsUserBased = value; return this; } } }