/* Options: Date: 2025-04-05 01:32:27 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CommentsTypeSuperAdminUserQuery.* //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="/superadmin/commentstype", Verbs="GET") @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) public static class CommentsTypeSuperAdminUserQuery implements IReturn { private static Object responseType = CommentsTypeResponse.class; public Object getResponseType() { return responseType; } } public static class CommentsTypeResponse { public Integer Id = null; public String Name = null; public String Description = null; public Integer getId() { return Id; } public CommentsTypeResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public CommentsTypeResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public CommentsTypeResponse setDescription(String value) { this.Description = value; return this; } } }