TechStacks!

<back to all web services

Overview

Site
The following routes are available for this service:
All Verbs/overview
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class Overview implements IGet
    {
        public Boolean reload = null;
        
        public Boolean isReload() { return reload; }
        public Overview setReload(Boolean value) { this.reload = value; return this; }
    }

    public static class OverviewResponse
    {
        public Date created = null;
        public ArrayList<UserInfo> topUsers = null;
        public ArrayList<TechnologyInfo> topTechnologies = null;
        public ArrayList<TechStackDetails> latestTechStacks = null;
        public ArrayList<TechnologyStack> popularTechStacks = null;
        public ArrayList<OrganizationInfo> allOrganizations = null;
        public HashMap<String,ArrayList<TechnologyInfo>> topTechnologiesByTier = null;
        public ResponseStatus responseStatus = null;
        
        public Date getCreated() { return created; }
        public OverviewResponse setCreated(Date value) { this.created = value; return this; }
        public ArrayList<UserInfo> getTopUsers() { return topUsers; }
        public OverviewResponse setTopUsers(ArrayList<UserInfo> value) { this.topUsers = value; return this; }
        public ArrayList<TechnologyInfo> getTopTechnologies() { return topTechnologies; }
        public OverviewResponse setTopTechnologies(ArrayList<TechnologyInfo> value) { this.topTechnologies = value; return this; }
        public ArrayList<TechStackDetails> getLatestTechStacks() { return latestTechStacks; }
        public OverviewResponse setLatestTechStacks(ArrayList<TechStackDetails> value) { this.latestTechStacks = value; return this; }
        public ArrayList<TechnologyStack> getPopularTechStacks() { return popularTechStacks; }
        public OverviewResponse setPopularTechStacks(ArrayList<TechnologyStack> value) { this.popularTechStacks = value; return this; }
        public ArrayList<OrganizationInfo> getAllOrganizations() { return allOrganizations; }
        public OverviewResponse setAllOrganizations(ArrayList<OrganizationInfo> value) { this.allOrganizations = value; return this; }
        public HashMap<String,ArrayList<TechnologyInfo>> getTopTechnologiesByTier() { return topTechnologiesByTier; }
        public OverviewResponse setTopTechnologiesByTier(HashMap<String,ArrayList<TechnologyInfo>> value) { this.topTechnologiesByTier = value; return this; }
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public OverviewResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
    }

    public static class UserInfo
    {
        public String userName = null;
        public String avatarUrl = null;
        public Integer stacksCount = null;
        
        public String getUserName() { return userName; }
        public UserInfo setUserName(String value) { this.userName = value; return this; }
        public String getAvatarUrl() { return avatarUrl; }
        public UserInfo setAvatarUrl(String value) { this.avatarUrl = value; return this; }
        public Integer getStacksCount() { return stacksCount; }
        public UserInfo setStacksCount(Integer value) { this.stacksCount = value; return this; }
    }

    public static class TechnologyInfo
    {
        public TechnologyTier tier = null;
        public String slug = null;
        public String name = null;
        public String logoUrl = null;
        public Integer stacksCount = null;
        
        public TechnologyTier getTier() { return tier; }
        public TechnologyInfo setTier(TechnologyTier value) { this.tier = value; return this; }
        public String getSlug() { return slug; }
        public TechnologyInfo setSlug(String value) { this.slug = value; return this; }
        public String getName() { return name; }
        public TechnologyInfo setName(String value) { this.name = value; return this; }
        public String getLogoUrl() { return logoUrl; }
        public TechnologyInfo setLogoUrl(String value) { this.logoUrl = value; return this; }
        public Integer getStacksCount() { return stacksCount; }
        public TechnologyInfo setStacksCount(Integer value) { this.stacksCount = value; return this; }
    }

    public static enum TechnologyTier
    {
        ProgrammingLanguage,
        Client,
        Http,
        Server,
        Data,
        SoftwareInfrastructure,
        OperatingSystem,
        HardwareInfrastructure,
        ThirdPartyServices;
    }

    public static class TechStackDetails extends TechnologyStackBase
    {
        public ArrayList<TechnologyInStack> 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<TechnologyInStack> getTechnologyChoices() { return technologyChoices; }
        public TechStackDetails setTechnologyChoices(ArrayList<TechnologyInStack> 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 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; }
    }

    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 TechnologyStack extends 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 TechnologyStack setId(Long value) { this.id = value; return this; }
        public String getName() { return name; }
        public TechnologyStack setName(String value) { this.name = value; return this; }
        public String getVendorName() { return vendorName; }
        public TechnologyStack setVendorName(String value) { this.vendorName = value; return this; }
        public String getDescription() { return description; }
        public TechnologyStack setDescription(String value) { this.description = value; return this; }
        public String getAppUrl() { return appUrl; }
        public TechnologyStack setAppUrl(String value) { this.appUrl = value; return this; }
        public String getScreenshotUrl() { return screenshotUrl; }
        public TechnologyStack setScreenshotUrl(String value) { this.screenshotUrl = value; return this; }
        public Date getCreated() { return created; }
        public TechnologyStack setCreated(Date value) { this.created = value; return this; }
        public String getCreatedBy() { return createdBy; }
        public TechnologyStack setCreatedBy(String value) { this.createdBy = value; return this; }
        public Date getLastModified() { return lastModified; }
        public TechnologyStack setLastModified(Date value) { this.lastModified = value; return this; }
        public String getLastModifiedBy() { return lastModifiedBy; }
        public TechnologyStack setLastModifiedBy(String value) { this.lastModifiedBy = value; return this; }
        public Boolean getIsLocked() { return isLocked; }
        public TechnologyStack setIsLocked(Boolean value) { this.isLocked = value; return this; }
        public String getOwnerId() { return ownerId; }
        public TechnologyStack setOwnerId(String value) { this.ownerId = value; return this; }
        public String getSlug() { return slug; }
        public TechnologyStack setSlug(String value) { this.slug = value; return this; }
        public String getDetails() { return details; }
        public TechnologyStack setDetails(String value) { this.details = value; return this; }
        public String getDetailsHtml() { return detailsHtml; }
        public TechnologyStack setDetailsHtml(String value) { this.detailsHtml = value; return this; }
        public Date getLastStatusUpdate() { return lastStatusUpdate; }
        public TechnologyStack setLastStatusUpdate(Date value) { this.lastStatusUpdate = value; return this; }
        public Integer getOrganizationId() { return organizationId; }
        public TechnologyStack setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public Long getCommentsPostId() { return commentsPostId; }
        public TechnologyStack setCommentsPostId(Long value) { this.commentsPostId = value; return this; }
        public Integer getViewCount() { return viewCount; }
        public TechnologyStack setViewCount(Integer value) { this.viewCount = value; return this; }
        public Integer getFavCount() { return favCount; }
        public TechnologyStack setFavCount(Integer value) { this.favCount = value; return this; }
    }

    public static class OrganizationInfo
    {
        public Integer id = null;
        public String name = null;
        public String slug = null;
        public Long refId = null;
        public String refSource = null;
        public Long upVotes = null;
        public Long downVotes = null;
        public Long membersCount = null;
        public Integer rank = null;
        public Boolean disableInvites = null;
        public String lang = null;
        public ArrayList<String> postTypes = null;
        public ArrayList<String> moderatorPostTypes = null;
        public Date locked = null;
        public ArrayList<LabelInfo> labels = null;
        public ArrayList<CategoryInfo> categories = null;
        
        public Integer getId() { return id; }
        public OrganizationInfo setId(Integer value) { this.id = value; return this; }
        public String getName() { return name; }
        public OrganizationInfo setName(String value) { this.name = value; return this; }
        public String getSlug() { return slug; }
        public OrganizationInfo setSlug(String value) { this.slug = value; return this; }
        public Long getRefId() { return refId; }
        public OrganizationInfo setRefId(Long value) { this.refId = value; return this; }
        public String getRefSource() { return refSource; }
        public OrganizationInfo setRefSource(String value) { this.refSource = value; return this; }
        public Long getUpVotes() { return upVotes; }
        public OrganizationInfo setUpVotes(Long value) { this.upVotes = value; return this; }
        public Long getDownVotes() { return downVotes; }
        public OrganizationInfo setDownVotes(Long value) { this.downVotes = value; return this; }
        public Long getMembersCount() { return membersCount; }
        public OrganizationInfo setMembersCount(Long value) { this.membersCount = value; return this; }
        public Integer getRank() { return rank; }
        public OrganizationInfo setRank(Integer value) { this.rank = value; return this; }
        public Boolean isDisableInvites() { return disableInvites; }
        public OrganizationInfo setDisableInvites(Boolean value) { this.disableInvites = value; return this; }
        public String getLang() { return lang; }
        public OrganizationInfo setLang(String value) { this.lang = value; return this; }
        public ArrayList<String> getPostTypes() { return postTypes; }
        public OrganizationInfo setPostTypes(ArrayList<String> value) { this.postTypes = value; return this; }
        public ArrayList<String> getModeratorPostTypes() { return moderatorPostTypes; }
        public OrganizationInfo setModeratorPostTypes(ArrayList<String> value) { this.moderatorPostTypes = value; return this; }
        public Date getLocked() { return locked; }
        public OrganizationInfo setLocked(Date value) { this.locked = value; return this; }
        public ArrayList<LabelInfo> getLabels() { return labels; }
        public OrganizationInfo setLabels(ArrayList<LabelInfo> value) { this.labels = value; return this; }
        public ArrayList<CategoryInfo> getCategories() { return categories; }
        public OrganizationInfo setCategories(ArrayList<CategoryInfo> value) { this.categories = value; return this; }
    }

    public static class LabelInfo
    {
        public String slug = null;
        public String color = null;
        
        public String getSlug() { return slug; }
        public LabelInfo setSlug(String value) { this.slug = value; return this; }
        public String getColor() { return color; }
        public LabelInfo setColor(String value) { this.color = value; return this; }
    }

    public static class CategoryInfo
    {
        public Integer id = null;
        public String name = null;
        public String slug = null;
        
        public Integer getId() { return id; }
        public CategoryInfo setId(Integer value) { this.id = value; return this; }
        public String getName() { return name; }
        public CategoryInfo setName(String value) { this.name = value; return this; }
        public String getSlug() { return slug; }
        public CategoryInfo setSlug(String value) { this.slug = value; return this; }
    }

}

Java Overview DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /overview HTTP/1.1 
Host: techstacks.io 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<Overview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel">
  <Reload>false</Reload>
</Overview>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<OverviewResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel">
  <AllOrganizations>
    <OrganizationInfo>
      <Categories>
        <CategoryInfo>
          <Id>0</Id>
          <Name>String</Name>
          <Slug>String</Slug>
        </CategoryInfo>
      </Categories>
      <DisableInvites>false</DisableInvites>
      <DownVotes>0</DownVotes>
      <Id>0</Id>
      <Labels>
        <LabelInfo>
          <Color>String</Color>
          <Slug>String</Slug>
        </LabelInfo>
      </Labels>
      <Lang>String</Lang>
      <Locked>0001-01-01T00:00:00</Locked>
      <MembersCount>0</MembersCount>
      <ModeratorPostTypes xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>String</d4p1:string>
      </ModeratorPostTypes>
      <Name>String</Name>
      <PostTypes xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>String</d4p1:string>
      </PostTypes>
      <Rank>0</Rank>
      <RefId>0</RefId>
      <RefSource>String</RefSource>
      <Slug>String</Slug>
      <UpVotes>0</UpVotes>
    </OrganizationInfo>
  </AllOrganizations>
  <Created>0001-01-01T00:00:00</Created>
  <LatestTechStacks>
    <TechStackDetails>
      <AppUrl xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</AppUrl>
      <CommentsPostId xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</CommentsPostId>
      <Created xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0001-01-01T00:00:00</Created>
      <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</CreatedBy>
      <Description xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</Description>
      <Details xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</Details>
      <DetailsHtml xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</DetailsHtml>
      <FavCount xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</FavCount>
      <Id xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</Id>
      <IsLocked xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">false</IsLocked>
      <LastModified xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0001-01-01T00:00:00</LastModified>
      <LastModifiedBy xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</LastModifiedBy>
      <LastStatusUpdate xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0001-01-01T00:00:00</LastStatusUpdate>
      <Name xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</Name>
      <OrganizationId xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</OrganizationId>
      <OwnerId xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</OwnerId>
      <ScreenshotUrl xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</ScreenshotUrl>
      <Slug xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</Slug>
      <VendorName xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</VendorName>
      <ViewCount xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</ViewCount>
      <TechnologyChoices>
        <TechnologyInStack>
          <CommentsPostId xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</CommentsPostId>
          <Created xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0001-01-01T00:00:00</Created>
          <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</CreatedBy>
          <Description xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</Description>
          <FavCount xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</FavCount>
          <Id xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</Id>
          <IsLocked xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">false</IsLocked>
          <LastModified xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0001-01-01T00:00:00</LastModified>
          <LastModifiedBy xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</LastModifiedBy>
          <LastStatusUpdate xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0001-01-01T00:00:00</LastStatusUpdate>
          <LogoApproved xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">false</LogoApproved>
          <LogoUrl xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</LogoUrl>
          <Name xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</Name>
          <OrganizationId xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</OrganizationId>
          <OwnerId xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</OwnerId>
          <ProductUrl xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</ProductUrl>
          <Slug xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</Slug>
          <Tier xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">ProgrammingLanguage</Tier>
          <VendorName xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</VendorName>
          <VendorUrl xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">String</VendorUrl>
          <ViewCount xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">0</ViewCount>
          <Justification>String</Justification>
          <TechnologyId>0</TechnologyId>
          <TechnologyStackId>0</TechnologyStackId>
        </TechnologyInStack>
      </TechnologyChoices>
    </TechStackDetails>
  </LatestTechStacks>
  <PopularTechStacks xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">
    <d2p1:TechnologyStack>
      <d2p1:AppUrl>String</d2p1:AppUrl>
      <d2p1:CommentsPostId>0</d2p1:CommentsPostId>
      <d2p1:Created>0001-01-01T00:00:00</d2p1:Created>
      <d2p1:CreatedBy>String</d2p1:CreatedBy>
      <d2p1:Description>String</d2p1:Description>
      <d2p1:Details>String</d2p1:Details>
      <d2p1:DetailsHtml>String</d2p1:DetailsHtml>
      <d2p1:FavCount>0</d2p1:FavCount>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:IsLocked>false</d2p1:IsLocked>
      <d2p1:LastModified>0001-01-01T00:00:00</d2p1:LastModified>
      <d2p1:LastModifiedBy>String</d2p1:LastModifiedBy>
      <d2p1:LastStatusUpdate>0001-01-01T00:00:00</d2p1:LastStatusUpdate>
      <d2p1:Name>String</d2p1:Name>
      <d2p1:OrganizationId>0</d2p1:OrganizationId>
      <d2p1:OwnerId>String</d2p1:OwnerId>
      <d2p1:ScreenshotUrl>String</d2p1:ScreenshotUrl>
      <d2p1:Slug>String</d2p1:Slug>
      <d2p1:VendorName>String</d2p1:VendorName>
      <d2p1:ViewCount>0</d2p1:ViewCount>
    </d2p1:TechnologyStack>
  </PopularTechStacks>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
  <TopTechnologies>
    <TechnologyInfo>
      <LogoUrl>String</LogoUrl>
      <Name>String</Name>
      <Slug>String</Slug>
      <StacksCount>0</StacksCount>
      <Tier>ProgrammingLanguage</Tier>
    </TechnologyInfo>
  </TopTechnologies>
  <TopTechnologiesByTier xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringArrayOfTechnologyInfowgYcwPx1>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>
        <TechnologyInfo>
          <LogoUrl>String</LogoUrl>
          <Name>String</Name>
          <Slug>String</Slug>
          <StacksCount>0</StacksCount>
          <Tier>ProgrammingLanguage</Tier>
        </TechnologyInfo>
      </d2p1:Value>
    </d2p1:KeyValueOfstringArrayOfTechnologyInfowgYcwPx1>
  </TopTechnologiesByTier>
  <TopUsers>
    <UserInfo>
      <AvatarUrl>String</AvatarUrl>
      <StacksCount>0</StacksCount>
      <UserName>String</UserName>
    </UserInfo>
  </TopUsers>
</OverviewResponse>