/* Options: Date: 2024-04-29 06:43:42 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: AddOrganizationCategory.* //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", Verbs="POST") public static class AddOrganizationCategory implements IReturn, IPost { public Integer organizationId = null; public String slug = null; public String name = null; public String description = null; public ArrayList technologyIds = null; public Integer getOrganizationId() { return organizationId; } public AddOrganizationCategory setOrganizationId(Integer value) { this.organizationId = value; return this; } public String getSlug() { return slug; } public AddOrganizationCategory setSlug(String value) { this.slug = value; return this; } public String getName() { return name; } public AddOrganizationCategory setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public AddOrganizationCategory setDescription(String value) { this.description = value; return this; } public ArrayList getTechnologyIds() { return technologyIds; } public AddOrganizationCategory setTechnologyIds(ArrayList value) { this.technologyIds = value; return this; } private static Object responseType = AddOrganizationCategoryResponse.class; public Object getResponseType() { return responseType; } } public static class AddOrganizationCategoryResponse { public Integer id = null; public String slug = null; public ResponseStatus responseStatus = null; public Integer getId() { return id; } public AddOrganizationCategoryResponse setId(Integer value) { this.id = value; return this; } public String getSlug() { return slug; } public AddOrganizationCategoryResponse setSlug(String value) { this.slug = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public AddOrganizationCategoryResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }