/* Options: Date: 2024-04-28 14:58:27 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: GetTechnologyStackPreviousVersions.* //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}/previous-versions", Verbs="GET") public static class GetTechnologyStackPreviousVersions implements IReturn, IGet { public String slug = null; public String getSlug() { return slug; } public GetTechnologyStackPreviousVersions setSlug(String value) { this.slug = value; return this; } private static Object responseType = GetTechnologyStackPreviousVersionsResponse.class; public Object getResponseType() { return responseType; } } public static class GetTechnologyStackPreviousVersionsResponse { public ArrayList results = null; public ArrayList getResults() { return results; } public GetTechnologyStackPreviousVersionsResponse setResults(ArrayList value) { this.results = value; return this; } } public static class TechnologyStackHistory extends TechnologyStackBase { public Long technologyStackId = null; public String operation = null; public ArrayList technologyIds = 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 Long getTechnologyStackId() { return technologyStackId; } public TechnologyStackHistory setTechnologyStackId(Long value) { this.technologyStackId = value; return this; } public String getOperation() { return operation; } public TechnologyStackHistory setOperation(String value) { this.operation = value; return this; } public ArrayList getTechnologyIds() { return technologyIds; } public TechnologyStackHistory setTechnologyIds(ArrayList value) { this.technologyIds = value; return this; } public Long getId() { return id; } public TechnologyStackHistory setId(Long value) { this.id = value; return this; } public String getName() { return name; } public TechnologyStackHistory setName(String value) { this.name = value; return this; } public String getVendorName() { return vendorName; } public TechnologyStackHistory setVendorName(String value) { this.vendorName = value; return this; } public String getDescription() { return description; } public TechnologyStackHistory setDescription(String value) { this.description = value; return this; } public String getAppUrl() { return appUrl; } public TechnologyStackHistory setAppUrl(String value) { this.appUrl = value; return this; } public String getScreenshotUrl() { return screenshotUrl; } public TechnologyStackHistory setScreenshotUrl(String value) { this.screenshotUrl = value; return this; } public Date getCreated() { return created; } public TechnologyStackHistory setCreated(Date value) { this.created = value; return this; } public String getCreatedBy() { return createdBy; } public TechnologyStackHistory setCreatedBy(String value) { this.createdBy = value; return this; } public Date getLastModified() { return lastModified; } public TechnologyStackHistory setLastModified(Date value) { this.lastModified = value; return this; } public String getLastModifiedBy() { return lastModifiedBy; } public TechnologyStackHistory setLastModifiedBy(String value) { this.lastModifiedBy = value; return this; } public Boolean getIsLocked() { return isLocked; } public TechnologyStackHistory setIsLocked(Boolean value) { this.isLocked = value; return this; } public String getOwnerId() { return ownerId; } public TechnologyStackHistory setOwnerId(String value) { this.ownerId = value; return this; } public String getSlug() { return slug; } public TechnologyStackHistory setSlug(String value) { this.slug = value; return this; } public String getDetails() { return details; } public TechnologyStackHistory setDetails(String value) { this.details = value; return this; } public String getDetailsHtml() { return detailsHtml; } public TechnologyStackHistory setDetailsHtml(String value) { this.detailsHtml = value; return this; } public Date getLastStatusUpdate() { return lastStatusUpdate; } public TechnologyStackHistory setLastStatusUpdate(Date value) { this.lastStatusUpdate = value; return this; } public Integer getOrganizationId() { return organizationId; } public TechnologyStackHistory setOrganizationId(Integer value) { this.organizationId = value; return this; } public Long getCommentsPostId() { return commentsPostId; } public TechnologyStackHistory setCommentsPostId(Long value) { this.commentsPostId = value; return this; } public Integer getViewCount() { return viewCount; } public TechnologyStackHistory setViewCount(Integer value) { this.viewCount = value; return this; } public Integer getFavCount() { return favCount; } public TechnologyStackHistory 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; } } }