/* Options: Date: 2024-04-27 07:15:46 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteOrganizationCategory.* //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="/orgs/{OrganizationId}/categories/{Id}", Verbs="DELETE") public static class DeleteOrganizationCategory implements IReturnVoid, IDelete { public Integer organizationId = null; public Integer id = null; public Integer getOrganizationId() { return organizationId; } public DeleteOrganizationCategory setOrganizationId(Integer value) { this.organizationId = value; return this; } public Integer getId() { return id; } public DeleteOrganizationCategory setId(Integer value) { this.id = value; return this; } } }