using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using TechStacks.ServiceModel;
using TechStacks.ServiceModel.Types;
namespace TechStacks.ServiceModel
{
public partial class GetPost
: IGet
{
public virtual long Id { get; set; }
public virtual string Include { get; set; }
}
public partial class GetPostResponse
{
public virtual long Cache { get; set; }
public virtual Post Post { get; set; }
public virtual List<PostComment> Comments { get; set; } = [];
public virtual ResponseStatus ResponseStatus { get; set; }
}
}
namespace TechStacks.ServiceModel.Types
{
public partial class Post
{
public virtual long Id { get; set; }
public virtual int OrganizationId { get; set; }
public virtual int UserId { get; set; }
[Ignore]
public virtual string UserProfileUrl { get; set; }
public virtual PostType Type { get; set; }
public virtual int CategoryId { get; set; }
public virtual string Title { get; set; }
public virtual string Slug { get; set; }
public virtual string Url { get; set; }
public virtual string ImageUrl { get; set; }
[StringLength(int.MaxValue)]
public virtual string Content { get; set; }
[StringLength(int.MaxValue)]
public virtual string ContentHtml { get; set; }
public virtual long? PinCommentId { get; set; }
public virtual int[] TechnologyIds { get; set; } = [];
public virtual DateTime? FromDate { get; set; }
public virtual DateTime? ToDate { get; set; }
public virtual string Location { get; set; }
public virtual string MetaType { get; set; }
public virtual string Meta { get; set; }
public virtual bool Approved { get; set; }
public virtual long UpVotes { get; set; }
public virtual long DownVotes { get; set; }
public virtual long Points { get; set; }
public virtual long Views { get; set; }
public virtual long Favorites { get; set; }
public virtual int Subscribers { get; set; }
public virtual int ReplyCount { get; set; }
public virtual int CommentsCount { get; set; }
public virtual int WordCount { get; set; }
public virtual int ReportCount { get; set; }
public virtual int LinksCount { get; set; }
public virtual int LinkedToCount { get; set; }
public virtual int Score { get; set; }
public virtual int Rank { get; set; }
public virtual string[]? Labels { get; set; }
public virtual int[]? RefUserIds { get; set; }
public virtual string[]? RefLinks { get; set; }
public virtual int[]? MuteUserIds { get; set; }
public virtual DateTime? LastCommentDate { get; set; }
public virtual long? LastCommentId { get; set; }
public virtual int? LastCommentUserId { get; set; }
public virtual DateTime? Deleted { get; set; }
public virtual string DeletedBy { get; set; }
public virtual DateTime? Locked { get; set; }
public virtual string LockedBy { get; set; }
public virtual DateTime? Hidden { get; set; }
public virtual string HiddenBy { get; set; }
public virtual string Status { get; set; }
public virtual DateTime? StatusDate { get; set; }
public virtual string StatusBy { get; set; }
public virtual bool Archived { get; set; }
public virtual DateTime? Bumped { get; set; }
public virtual DateTime Created { get; set; }
public virtual string CreatedBy { get; set; }
public virtual DateTime Modified { get; set; }
public virtual string ModifiedBy { get; set; }
public virtual long? RefId { get; set; }
public virtual string RefSource { get; set; }
public virtual string RefUrn { get; set; }
}
public partial class PostComment
{
public virtual long Id { get; set; }
public virtual long PostId { get; set; }
public virtual int UserId { get; set; }
[Ignore]
public virtual string UserProfileUrl { get; set; }
public virtual long? ReplyId { get; set; }
[StringLength(int.MaxValue)]
public virtual string Content { get; set; }
[StringLength(int.MaxValue)]
public virtual string ContentHtml { get; set; }
public virtual int Score { get; set; }
public virtual int Rank { get; set; }
public virtual long UpVotes { get; set; }
public virtual long DownVotes { get; set; }
public virtual long Favorites { get; set; }
public virtual int WordCount { get; set; }
public virtual int ReportCount { get; set; }
public virtual DateTime? Deleted { get; set; }
public virtual DateTime? Hidden { get; set; }
public virtual DateTime Modified { get; set; }
public virtual DateTime Created { get; set; }
public virtual string CreatedBy { get; set; }
public virtual long? RefId { get; set; }
public virtual string RefSource { get; set; }
public virtual string RefUrn { get; set; }
}
public enum PostType
{
Announcement,
Post,
Showcase,
Question,
Request,
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/GetPost HTTP/1.1
Host: techstacks.io
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
id: 0,
include: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
cache: 0,
post:
{
id: 0,
organizationId: 0,
userId: 0,
userProfileUrl: String,
type: Announcement,
categoryId: 0,
title: String,
slug: String,
url: String,
imageUrl: String,
content: String,
contentHtml: String,
pinCommentId: 0,
technologyIds:
[
0
],
fromDate: 0001-01-01,
toDate: 0001-01-01,
location: String,
metaType: String,
meta: String,
approved: False,
upVotes: 0,
downVotes: 0,
points: 0,
views: 0,
favorites: 0,
subscribers: 0,
replyCount: 0,
commentsCount: 0,
wordCount: 0,
reportCount: 0,
linksCount: 0,
linkedToCount: 0,
score: 0,
rank: 0,
labels:
[
String
],
refUserIds:
[
0
],
refLinks:
[
String
],
muteUserIds:
[
0
],
lastCommentDate: 0001-01-01,
lastCommentId: 0,
lastCommentUserId: 0,
deleted: 0001-01-01,
deletedBy: String,
locked: 0001-01-01,
lockedBy: String,
hidden: 0001-01-01,
hiddenBy: String,
status: String,
statusDate: 0001-01-01,
statusBy: String,
archived: False,
bumped: 0001-01-01,
created: 0001-01-01,
createdBy: String,
modified: 0001-01-01,
modifiedBy: String,
refId: 0,
refSource: String,
refUrn: String
},
comments:
[
{
id: 0,
postId: 0,
userId: 0,
userProfileUrl: String,
replyId: 0,
content: String,
contentHtml: String,
score: 0,
rank: 0,
upVotes: 0,
downVotes: 0,
favorites: 0,
wordCount: 0,
reportCount: 0,
deleted: 0001-01-01,
hidden: 0001-01-01,
modified: 0001-01-01,
created: 0001-01-01,
createdBy: String,
refId: 0,
refSource: String,
refUrn: String
}
],
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}