/* Options: Date: 2024-04-29 20:52:13 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: CreateOrganizationForTechnology.* //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/posts/new", Verbs="POST") public static class CreateOrganizationForTechnology implements IReturn, IPost { public Long technologyId = null; public Long techStackId = null; public Long getTechnologyId() { return technologyId; } public CreateOrganizationForTechnology setTechnologyId(Long value) { this.technologyId = value; return this; } public Long getTechStackId() { return techStackId; } public CreateOrganizationForTechnology setTechStackId(Long value) { this.techStackId = value; return this; } private static Object responseType = CreateOrganizationForTechnologyResponse.class; public Object getResponseType() { return responseType; } } public static class CreateOrganizationForTechnologyResponse { public Integer organizationId = null; public String organizationSlug = null; public Long commentsPostId = null; public String commentsPostSlug = null; public ResponseStatus responseStatus = null; public Integer getOrganizationId() { return organizationId; } public CreateOrganizationForTechnologyResponse setOrganizationId(Integer value) { this.organizationId = value; return this; } public String getOrganizationSlug() { return organizationSlug; } public CreateOrganizationForTechnologyResponse setOrganizationSlug(String value) { this.organizationSlug = value; return this; } public Long getCommentsPostId() { return commentsPostId; } public CreateOrganizationForTechnologyResponse setCommentsPostId(Long value) { this.commentsPostId = value; return this; } public String getCommentsPostSlug() { return commentsPostSlug; } public CreateOrganizationForTechnologyResponse setCommentsPostSlug(String value) { this.commentsPostSlug = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public CreateOrganizationForTechnologyResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }