/* Options: Date: 2024-07-03 13:16:43 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EncryptText.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/encryption/encrypt", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") public static class EncryptText implements ICompany { public UUID CompanyId = null; public String text = null; public UUID getCompanyId() { return CompanyId; } public EncryptText setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getText() { return text; } public EncryptText setText(String value) { this.text = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }