/* Options: Date: 2024-05-06 00:56:26 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: RemoveOrganizationLabel.* //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}/labels/{Slug}", Verbs="DELETE") public static class RemoveOrganizationLabel implements IReturnVoid, IDelete { public Integer organizationId = null; public String slug = null; public Integer getOrganizationId() { return organizationId; } public RemoveOrganizationLabel setOrganizationId(Integer value) { this.organizationId = value; return this; } public String getSlug() { return slug; } public RemoveOrganizationLabel setSlug(String value) { this.slug = value; return this; } } }