/* Options: Date: 2024-04-30 23:33:57 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: GetPost.* //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="/posts/{Id}", Verbs="GET") public static class GetPost implements IReturn, IGet { public Long id = null; public String include = null; public Long getId() { return id; } public GetPost setId(Long value) { this.id = value; return this; } public String getInclude() { return include; } public GetPost setInclude(String value) { this.include = value; return this; } private static Object responseType = GetPostResponse.class; public Object getResponseType() { return responseType; } } public static class GetPostResponse { public Long cache = null; public Post post = null; public ArrayList comments = null; public ResponseStatus responseStatus = null; public Long getCache() { return cache; } public GetPostResponse setCache(Long value) { this.cache = value; return this; } public Post getPost() { return post; } public GetPostResponse setPost(Post value) { this.post = value; return this; } public ArrayList getComments() { return comments; } public GetPostResponse setComments(ArrayList value) { this.comments = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetPostResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class Post { public Long id = null; public Integer organizationId = null; public Integer userId = null; public PostType type = null; public Integer categoryId = null; public String title = null; public String slug = null; public String url = null; public String imageUrl = null; @StringLength(2147483647) public String content = null; @StringLength(2147483647) public String contentHtml = null; public Long pinCommentId = null; public ArrayList technologyIds = null; public Date fromDate = null; public Date toDate = null; public String location = null; public String metaType = null; public String meta = null; public Boolean approved = null; public Long upVotes = null; public Long downVotes = null; public Long points = null; public Long views = null; public Long favorites = null; public Integer subscribers = null; public Integer replyCount = null; public Integer commentsCount = null; public Integer wordCount = null; public Integer reportCount = null; public Integer linksCount = null; public Integer linkedToCount = null; public Integer score = null; public Integer rank = null; public ArrayList labels = null; public ArrayList refUserIds = null; public ArrayList refLinks = null; public ArrayList muteUserIds = null; public Date lastCommentDate = null; public Long lastCommentId = null; public Integer lastCommentUserId = null; public Date deleted = null; public String deletedBy = null; public Date locked = null; public String lockedBy = null; public Date hidden = null; public String hiddenBy = null; public String status = null; public Date statusDate = null; public String statusBy = null; public Boolean archived = null; public Date bumped = null; public Date created = null; public String createdBy = null; public Date modified = null; public String modifiedBy = null; public Long refId = null; public String refSource = null; public String refUrn = null; public Long getId() { return id; } public Post setId(Long value) { this.id = value; return this; } public Integer getOrganizationId() { return organizationId; } public Post setOrganizationId(Integer value) { this.organizationId = value; return this; } public Integer getUserId() { return userId; } public Post setUserId(Integer value) { this.userId = value; return this; } public PostType getType() { return type; } public Post setType(PostType value) { this.type = value; return this; } public Integer getCategoryId() { return categoryId; } public Post setCategoryId(Integer value) { this.categoryId = value; return this; } public String getTitle() { return title; } public Post setTitle(String value) { this.title = value; return this; } public String getSlug() { return slug; } public Post setSlug(String value) { this.slug = value; return this; } public String getUrl() { return url; } public Post setUrl(String value) { this.url = value; return this; } public String getImageUrl() { return imageUrl; } public Post setImageUrl(String value) { this.imageUrl = value; return this; } public String getContent() { return content; } public Post setContent(String value) { this.content = value; return this; } public String getContentHtml() { return contentHtml; } public Post setContentHtml(String value) { this.contentHtml = value; return this; } public Long getPinCommentId() { return pinCommentId; } public Post setPinCommentId(Long value) { this.pinCommentId = value; return this; } public ArrayList getTechnologyIds() { return technologyIds; } public Post setTechnologyIds(ArrayList value) { this.technologyIds = value; return this; } public Date getFromDate() { return fromDate; } public Post setFromDate(Date value) { this.fromDate = value; return this; } public Date getToDate() { return toDate; } public Post setToDate(Date value) { this.toDate = value; return this; } public String getLocation() { return location; } public Post setLocation(String value) { this.location = value; return this; } public String getMetaType() { return metaType; } public Post setMetaType(String value) { this.metaType = value; return this; } public String getMeta() { return meta; } public Post setMeta(String value) { this.meta = value; return this; } public Boolean isApproved() { return approved; } public Post setApproved(Boolean value) { this.approved = value; return this; } public Long getUpVotes() { return upVotes; } public Post setUpVotes(Long value) { this.upVotes = value; return this; } public Long getDownVotes() { return downVotes; } public Post setDownVotes(Long value) { this.downVotes = value; return this; } public Long getPoints() { return points; } public Post setPoints(Long value) { this.points = value; return this; } public Long getViews() { return views; } public Post setViews(Long value) { this.views = value; return this; } public Long getFavorites() { return favorites; } public Post setFavorites(Long value) { this.favorites = value; return this; } public Integer getSubscribers() { return subscribers; } public Post setSubscribers(Integer value) { this.subscribers = value; return this; } public Integer getReplyCount() { return replyCount; } public Post setReplyCount(Integer value) { this.replyCount = value; return this; } public Integer getCommentsCount() { return commentsCount; } public Post setCommentsCount(Integer value) { this.commentsCount = value; return this; } public Integer getWordCount() { return wordCount; } public Post setWordCount(Integer value) { this.wordCount = value; return this; } public Integer getReportCount() { return reportCount; } public Post setReportCount(Integer value) { this.reportCount = value; return this; } public Integer getLinksCount() { return linksCount; } public Post setLinksCount(Integer value) { this.linksCount = value; return this; } public Integer getLinkedToCount() { return linkedToCount; } public Post setLinkedToCount(Integer value) { this.linkedToCount = value; return this; } public Integer getScore() { return score; } public Post setScore(Integer value) { this.score = value; return this; } public Integer getRank() { return rank; } public Post setRank(Integer value) { this.rank = value; return this; } public ArrayList getLabels() { return labels; } public Post setLabels(ArrayList value) { this.labels = value; return this; } public ArrayList getRefUserIds() { return refUserIds; } public Post setRefUserIds(ArrayList value) { this.refUserIds = value; return this; } public ArrayList getRefLinks() { return refLinks; } public Post setRefLinks(ArrayList value) { this.refLinks = value; return this; } public ArrayList getMuteUserIds() { return muteUserIds; } public Post setMuteUserIds(ArrayList value) { this.muteUserIds = value; return this; } public Date getLastCommentDate() { return lastCommentDate; } public Post setLastCommentDate(Date value) { this.lastCommentDate = value; return this; } public Long getLastCommentId() { return lastCommentId; } public Post setLastCommentId(Long value) { this.lastCommentId = value; return this; } public Integer getLastCommentUserId() { return lastCommentUserId; } public Post setLastCommentUserId(Integer value) { this.lastCommentUserId = value; return this; } public Date getDeleted() { return deleted; } public Post setDeleted(Date value) { this.deleted = value; return this; } public String getDeletedBy() { return deletedBy; } public Post setDeletedBy(String value) { this.deletedBy = value; return this; } public Date getLocked() { return locked; } public Post setLocked(Date value) { this.locked = value; return this; } public String getLockedBy() { return lockedBy; } public Post setLockedBy(String value) { this.lockedBy = value; return this; } public Date getHidden() { return hidden; } public Post setHidden(Date value) { this.hidden = value; return this; } public String getHiddenBy() { return hiddenBy; } public Post setHiddenBy(String value) { this.hiddenBy = value; return this; } public String getStatus() { return status; } public Post setStatus(String value) { this.status = value; return this; } public Date getStatusDate() { return statusDate; } public Post setStatusDate(Date value) { this.statusDate = value; return this; } public String getStatusBy() { return statusBy; } public Post setStatusBy(String value) { this.statusBy = value; return this; } public Boolean isArchived() { return archived; } public Post setArchived(Boolean value) { this.archived = value; return this; } public Date getBumped() { return bumped; } public Post setBumped(Date value) { this.bumped = value; return this; } public Date getCreated() { return created; } public Post setCreated(Date value) { this.created = value; return this; } public String getCreatedBy() { return createdBy; } public Post setCreatedBy(String value) { this.createdBy = value; return this; } public Date getModified() { return modified; } public Post setModified(Date value) { this.modified = value; return this; } public String getModifiedBy() { return modifiedBy; } public Post setModifiedBy(String value) { this.modifiedBy = value; return this; } public Long getRefId() { return refId; } public Post setRefId(Long value) { this.refId = value; return this; } public String getRefSource() { return refSource; } public Post setRefSource(String value) { this.refSource = value; return this; } public String getRefUrn() { return refUrn; } public Post setRefUrn(String value) { this.refUrn = value; return this; } } public static enum PostType { Announcement, Post, Showcase, Question, Request; } public static class PostComment { public Long id = null; public Long postId = null; public Integer userId = null; public Long replyId = null; @StringLength(2147483647) public String content = null; @StringLength(2147483647) public String contentHtml = null; public Integer score = null; public Integer rank = null; public Long upVotes = null; public Long downVotes = null; public Long favorites = null; public Integer wordCount = null; public Integer reportCount = null; public Date deleted = null; public Date hidden = null; public Date modified = null; public Date created = null; public String createdBy = null; public Long refId = null; public String refSource = null; public String refUrn = null; public Long getId() { return id; } public PostComment setId(Long value) { this.id = value; return this; } public Long getPostId() { return postId; } public PostComment setPostId(Long value) { this.postId = value; return this; } public Integer getUserId() { return userId; } public PostComment setUserId(Integer value) { this.userId = value; return this; } public Long getReplyId() { return replyId; } public PostComment setReplyId(Long value) { this.replyId = value; return this; } public String getContent() { return content; } public PostComment setContent(String value) { this.content = value; return this; } public String getContentHtml() { return contentHtml; } public PostComment setContentHtml(String value) { this.contentHtml = value; return this; } public Integer getScore() { return score; } public PostComment setScore(Integer value) { this.score = value; return this; } public Integer getRank() { return rank; } public PostComment setRank(Integer value) { this.rank = value; return this; } public Long getUpVotes() { return upVotes; } public PostComment setUpVotes(Long value) { this.upVotes = value; return this; } public Long getDownVotes() { return downVotes; } public PostComment setDownVotes(Long value) { this.downVotes = value; return this; } public Long getFavorites() { return favorites; } public PostComment setFavorites(Long value) { this.favorites = value; return this; } public Integer getWordCount() { return wordCount; } public PostComment setWordCount(Integer value) { this.wordCount = value; return this; } public Integer getReportCount() { return reportCount; } public PostComment setReportCount(Integer value) { this.reportCount = value; return this; } public Date getDeleted() { return deleted; } public PostComment setDeleted(Date value) { this.deleted = value; return this; } public Date getHidden() { return hidden; } public PostComment setHidden(Date value) { this.hidden = value; return this; } public Date getModified() { return modified; } public PostComment setModified(Date value) { this.modified = value; return this; } public Date getCreated() { return created; } public PostComment setCreated(Date value) { this.created = value; return this; } public String getCreatedBy() { return createdBy; } public PostComment setCreatedBy(String value) { this.createdBy = value; return this; } public Long getRefId() { return refId; } public PostComment setRefId(Long value) { this.refId = value; return this; } public String getRefSource() { return refSource; } public PostComment setRefSource(String value) { this.refSource = value; return this; } public String getRefUrn() { return refUrn; } public PostComment setRefUrn(String value) { this.refUrn = value; return this; } } }