/* Options: Date: 2024-04-28 13:03:49 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: GetTechnologyStack.* //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="/techstacks/{Slug}", Verbs="GET") public static class GetTechnologyStack implements IReturn, IRegisterStats, IGet { public String slug = null; public String getSlug() { return slug; } public GetTechnologyStack setSlug(String value) { this.slug = value; return this; } private static Object responseType = GetTechnologyStackResponse.class; public Object getResponseType() { return responseType; } } public static class GetTechnologyStackResponse { public Date created = null; public TechStackDetails result = null; public ResponseStatus responseStatus = null; public Date getCreated() { return created; } public GetTechnologyStackResponse setCreated(Date value) { this.created = value; return this; } public TechStackDetails getResult() { return result; } public GetTechnologyStackResponse setResult(TechStackDetails value) { this.result = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetTechnologyStackResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static interface IRegisterStats { } public static enum TechnologyTier { ProgrammingLanguage, Client, Http, Server, Data, SoftwareInfrastructure, OperatingSystem, HardwareInfrastructure, ThirdPartyServices; } public static class TechStackDetails extends TechnologyStackBase { public ArrayList technologyChoices = null; public Long id = null; public String name = null; public String vendorName = null; public String description = null; public String appUrl = null; public String screenshotUrl = null; public Date created = null; public String createdBy = null; public Date lastModified = null; public String lastModifiedBy = null; public Boolean isLocked = null; public String ownerId = null; public String slug = null; @StringLength(2147483647) public String details = null; @StringLength(2147483647) public String detailsHtml = null; public Date lastStatusUpdate = null; public Integer organizationId = null; public Long commentsPostId = null; public Integer viewCount = null; public Integer favCount = null; public ArrayList getTechnologyChoices() { return technologyChoices; } public TechStackDetails setTechnologyChoices(ArrayList value) { this.technologyChoices = value; return this; } public Long getId() { return id; } public TechStackDetails setId(Long value) { this.id = value; return this; } public String getName() { return name; } public TechStackDetails setName(String value) { this.name = value; return this; } public String getVendorName() { return vendorName; } public TechStackDetails setVendorName(String value) { this.vendorName = value; return this; } public String getDescription() { return description; } public TechStackDetails setDescription(String value) { this.description = value; return this; } public String getAppUrl() { return appUrl; } public TechStackDetails setAppUrl(String value) { this.appUrl = value; return this; } public String getScreenshotUrl() { return screenshotUrl; } public TechStackDetails setScreenshotUrl(String value) { this.screenshotUrl = value; return this; } public Date getCreated() { return created; } public TechStackDetails setCreated(Date value) { this.created = value; return this; } public String getCreatedBy() { return createdBy; } public TechStackDetails setCreatedBy(String value) { this.createdBy = value; return this; } public Date getLastModified() { return lastModified; } public TechStackDetails setLastModified(Date value) { this.lastModified = value; return this; } public String getLastModifiedBy() { return lastModifiedBy; } public TechStackDetails setLastModifiedBy(String value) { this.lastModifiedBy = value; return this; } public Boolean getIsLocked() { return isLocked; } public TechStackDetails setIsLocked(Boolean value) { this.isLocked = value; return this; } public String getOwnerId() { return ownerId; } public TechStackDetails setOwnerId(String value) { this.ownerId = value; return this; } public String getSlug() { return slug; } public TechStackDetails setSlug(String value) { this.slug = value; return this; } public String getDetails() { return details; } public TechStackDetails setDetails(String value) { this.details = value; return this; } public String getDetailsHtml() { return detailsHtml; } public TechStackDetails setDetailsHtml(String value) { this.detailsHtml = value; return this; } public Date getLastStatusUpdate() { return lastStatusUpdate; } public TechStackDetails setLastStatusUpdate(Date value) { this.lastStatusUpdate = value; return this; } public Integer getOrganizationId() { return organizationId; } public TechStackDetails setOrganizationId(Integer value) { this.organizationId = value; return this; } public Long getCommentsPostId() { return commentsPostId; } public TechStackDetails setCommentsPostId(Long value) { this.commentsPostId = value; return this; } public Integer getViewCount() { return viewCount; } public TechStackDetails setViewCount(Integer value) { this.viewCount = value; return this; } public Integer getFavCount() { return favCount; } public TechStackDetails setFavCount(Integer value) { this.favCount = value; return this; } } public static class TechnologyBase { public Long id = null; public String name = null; public String vendorName = null; public String vendorUrl = null; public String productUrl = null; public String logoUrl = null; public String description = null; public Date created = null; public String createdBy = null; public Date lastModified = null; public String lastModifiedBy = null; public String ownerId = null; public String slug = null; public Boolean logoApproved = null; public Boolean isLocked = null; public TechnologyTier tier = null; public Date lastStatusUpdate = null; public Integer organizationId = null; public Long commentsPostId = null; public Integer viewCount = null; public Integer favCount = null; public Long getId() { return id; } public TechnologyBase setId(Long value) { this.id = value; return this; } public String getName() { return name; } public TechnologyBase setName(String value) { this.name = value; return this; } public String getVendorName() { return vendorName; } public TechnologyBase setVendorName(String value) { this.vendorName = value; return this; } public String getVendorUrl() { return vendorUrl; } public TechnologyBase setVendorUrl(String value) { this.vendorUrl = value; return this; } public String getProductUrl() { return productUrl; } public TechnologyBase setProductUrl(String value) { this.productUrl = value; return this; } public String getLogoUrl() { return logoUrl; } public TechnologyBase setLogoUrl(String value) { this.logoUrl = value; return this; } public String getDescription() { return description; } public TechnologyBase setDescription(String value) { this.description = value; return this; } public Date getCreated() { return created; } public TechnologyBase setCreated(Date value) { this.created = value; return this; } public String getCreatedBy() { return createdBy; } public TechnologyBase setCreatedBy(String value) { this.createdBy = value; return this; } public Date getLastModified() { return lastModified; } public TechnologyBase setLastModified(Date value) { this.lastModified = value; return this; } public String getLastModifiedBy() { return lastModifiedBy; } public TechnologyBase setLastModifiedBy(String value) { this.lastModifiedBy = value; return this; } public String getOwnerId() { return ownerId; } public TechnologyBase setOwnerId(String value) { this.ownerId = value; return this; } public String getSlug() { return slug; } public TechnologyBase setSlug(String value) { this.slug = value; return this; } public Boolean isLogoApproved() { return logoApproved; } public TechnologyBase setLogoApproved(Boolean value) { this.logoApproved = value; return this; } public Boolean getIsLocked() { return isLocked; } public TechnologyBase setIsLocked(Boolean value) { this.isLocked = value; return this; } public TechnologyTier getTier() { return tier; } public TechnologyBase setTier(TechnologyTier value) { this.tier = value; return this; } public Date getLastStatusUpdate() { return lastStatusUpdate; } public TechnologyBase setLastStatusUpdate(Date value) { this.lastStatusUpdate = value; return this; } public Integer getOrganizationId() { return organizationId; } public TechnologyBase setOrganizationId(Integer value) { this.organizationId = value; return this; } public Long getCommentsPostId() { return commentsPostId; } public TechnologyBase setCommentsPostId(Long value) { this.commentsPostId = value; return this; } public Integer getViewCount() { return viewCount; } public TechnologyBase setViewCount(Integer value) { this.viewCount = value; return this; } public Integer getFavCount() { return favCount; } public TechnologyBase setFavCount(Integer value) { this.favCount = value; return this; } } public static class TechnologyStackBase { public Long id = null; public String name = null; public String vendorName = null; public String description = null; public String appUrl = null; public String screenshotUrl = null; public Date created = null; public String createdBy = null; public Date lastModified = null; public String lastModifiedBy = null; public Boolean isLocked = null; public String ownerId = null; public String slug = null; @StringLength(2147483647) public String details = null; @StringLength(2147483647) public String detailsHtml = null; public Date lastStatusUpdate = null; public Integer organizationId = null; public Long commentsPostId = null; public Integer viewCount = null; public Integer favCount = null; public Long getId() { return id; } public TechnologyStackBase setId(Long value) { this.id = value; return this; } public String getName() { return name; } public TechnologyStackBase setName(String value) { this.name = value; return this; } public String getVendorName() { return vendorName; } public TechnologyStackBase setVendorName(String value) { this.vendorName = value; return this; } public String getDescription() { return description; } public TechnologyStackBase setDescription(String value) { this.description = value; return this; } public String getAppUrl() { return appUrl; } public TechnologyStackBase setAppUrl(String value) { this.appUrl = value; return this; } public String getScreenshotUrl() { return screenshotUrl; } public TechnologyStackBase setScreenshotUrl(String value) { this.screenshotUrl = value; return this; } public Date getCreated() { return created; } public TechnologyStackBase setCreated(Date value) { this.created = value; return this; } public String getCreatedBy() { return createdBy; } public TechnologyStackBase setCreatedBy(String value) { this.createdBy = value; return this; } public Date getLastModified() { return lastModified; } public TechnologyStackBase setLastModified(Date value) { this.lastModified = value; return this; } public String getLastModifiedBy() { return lastModifiedBy; } public TechnologyStackBase setLastModifiedBy(String value) { this.lastModifiedBy = value; return this; } public Boolean getIsLocked() { return isLocked; } public TechnologyStackBase setIsLocked(Boolean value) { this.isLocked = value; return this; } public String getOwnerId() { return ownerId; } public TechnologyStackBase setOwnerId(String value) { this.ownerId = value; return this; } public String getSlug() { return slug; } public TechnologyStackBase setSlug(String value) { this.slug = value; return this; } public String getDetails() { return details; } public TechnologyStackBase setDetails(String value) { this.details = value; return this; } public String getDetailsHtml() { return detailsHtml; } public TechnologyStackBase setDetailsHtml(String value) { this.detailsHtml = value; return this; } public Date getLastStatusUpdate() { return lastStatusUpdate; } public TechnologyStackBase setLastStatusUpdate(Date value) { this.lastStatusUpdate = value; return this; } public Integer getOrganizationId() { return organizationId; } public TechnologyStackBase setOrganizationId(Integer value) { this.organizationId = value; return this; } public Long getCommentsPostId() { return commentsPostId; } public TechnologyStackBase setCommentsPostId(Long value) { this.commentsPostId = value; return this; } public Integer getViewCount() { return viewCount; } public TechnologyStackBase setViewCount(Integer value) { this.viewCount = value; return this; } public Integer getFavCount() { return favCount; } public TechnologyStackBase setFavCount(Integer value) { this.favCount = value; return this; } } public static class TechnologyInStack extends TechnologyBase { public Long technologyId = null; public Long technologyStackId = null; public String justification = null; public Long id = null; public String name = null; public String vendorName = null; public String vendorUrl = null; public String productUrl = null; public String logoUrl = null; public String description = null; public Date created = null; public String createdBy = null; public Date lastModified = null; public String lastModifiedBy = null; public String ownerId = null; public String slug = null; public Boolean logoApproved = null; public Boolean isLocked = null; public TechnologyTier tier = null; public Date lastStatusUpdate = null; public Integer organizationId = null; public Long commentsPostId = null; public Integer viewCount = null; public Integer favCount = null; public Long getTechnologyId() { return technologyId; } public TechnologyInStack setTechnologyId(Long value) { this.technologyId = value; return this; } public Long getTechnologyStackId() { return technologyStackId; } public TechnologyInStack setTechnologyStackId(Long value) { this.technologyStackId = value; return this; } public String getJustification() { return justification; } public TechnologyInStack setJustification(String value) { this.justification = value; return this; } public Long getId() { return id; } public TechnologyInStack setId(Long value) { this.id = value; return this; } public String getName() { return name; } public TechnologyInStack setName(String value) { this.name = value; return this; } public String getVendorName() { return vendorName; } public TechnologyInStack setVendorName(String value) { this.vendorName = value; return this; } public String getVendorUrl() { return vendorUrl; } public TechnologyInStack setVendorUrl(String value) { this.vendorUrl = value; return this; } public String getProductUrl() { return productUrl; } public TechnologyInStack setProductUrl(String value) { this.productUrl = value; return this; } public String getLogoUrl() { return logoUrl; } public TechnologyInStack setLogoUrl(String value) { this.logoUrl = value; return this; } public String getDescription() { return description; } public TechnologyInStack setDescription(String value) { this.description = value; return this; } public Date getCreated() { return created; } public TechnologyInStack setCreated(Date value) { this.created = value; return this; } public String getCreatedBy() { return createdBy; } public TechnologyInStack setCreatedBy(String value) { this.createdBy = value; return this; } public Date getLastModified() { return lastModified; } public TechnologyInStack setLastModified(Date value) { this.lastModified = value; return this; } public String getLastModifiedBy() { return lastModifiedBy; } public TechnologyInStack setLastModifiedBy(String value) { this.lastModifiedBy = value; return this; } public String getOwnerId() { return ownerId; } public TechnologyInStack setOwnerId(String value) { this.ownerId = value; return this; } public String getSlug() { return slug; } public TechnologyInStack setSlug(String value) { this.slug = value; return this; } public Boolean isLogoApproved() { return logoApproved; } public TechnologyInStack setLogoApproved(Boolean value) { this.logoApproved = value; return this; } public Boolean getIsLocked() { return isLocked; } public TechnologyInStack setIsLocked(Boolean value) { this.isLocked = value; return this; } public TechnologyTier getTier() { return tier; } public TechnologyInStack setTier(TechnologyTier value) { this.tier = value; return this; } public Date getLastStatusUpdate() { return lastStatusUpdate; } public TechnologyInStack setLastStatusUpdate(Date value) { this.lastStatusUpdate = value; return this; } public Integer getOrganizationId() { return organizationId; } public TechnologyInStack setOrganizationId(Integer value) { this.organizationId = value; return this; } public Long getCommentsPostId() { return commentsPostId; } public TechnologyInStack setCommentsPostId(Long value) { this.commentsPostId = value; return this; } public Integer getViewCount() { return viewCount; } public TechnologyInStack setViewCount(Integer value) { this.viewCount = value; return this; } public Integer getFavCount() { return favCount; } public TechnologyInStack setFavCount(Integer value) { this.favCount = value; return this; } } }