using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using TechStacks.ServiceInterface.Admin;
using TechStacks.ServiceModel.Types;
namespace TechStacks.ServiceInterface.Admin
{
public partial class DummyTypes
{
public virtual List<Post> Post { 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; }
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 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/oneway/DummyTypes HTTP/1.1
Host: techstacks.io
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
post:
[
{
id: 0,
organizationId: 0,
userId: 0,
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
}
]
}