GET | /posts/comment |
---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports TechStacks.ServiceModel
Imports TechStacks.ServiceModel.Types
Namespace Global
Namespace ServiceStack
<DataContract>
Public Partial Class QueryBase
<DataMember(Order:=1)>
Public Overridable Property Skip As Integer?
<DataMember(Order:=2)>
Public Overridable Property Take As Integer?
<DataMember(Order:=3)>
Public Overridable Property OrderBy As String
<DataMember(Order:=4)>
Public Overridable Property OrderByDesc As String
<DataMember(Order:=5)>
Public Overridable Property Include As String
<DataMember(Order:=6)>
Public Overridable Property Fields As String
<DataMember(Order:=7)>
Public Overridable Property Meta As Dictionary(Of String, String)
End Class
Public Partial Class QueryDb(Of T)
Inherits QueryBase
End Class
<DataContract>
Public Partial Class QueryResponse(Of T)
<DataMember(Order:=1)>
Public Overridable Property Offset As Integer
<DataMember(Order:=2)>
Public Overridable Property Total As Integer
<DataMember(Order:=3)>
Public Overridable Property Results As List(Of Post)
<DataMember(Order:=4)>
Public Overridable Property Meta As Dictionary(Of String, String)
<DataMember(Order:=5)>
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
Namespace TechStacks.ServiceModel
Public Partial Class QueryPostComments
Inherits QueryDb(Of PostComment)
Public Overridable Property Id As Long?
Public Overridable Property UserId As Long?
Public Overridable Property PostId As Long?
Public Overridable Property ContentContains As String
Public Overridable Property UpVotesAbove As Long?
Public Overridable Property UpVotesBelow As Long?
Public Overridable Property DownVotesAbove As Long?
Public Overridable Property DownVotes As Long?
Public Overridable Property FavoritesAbove As Long?
Public Overridable Property FavoritesBelow As Long?
Public Overridable Property WordCountAbove As Integer?
Public Overridable Property WordCountBelow As Integer?
Public Overridable Property ReportCountAbove As Integer?
Public Overridable Property ReportCountBelow As Integer?
End Class
End Namespace
Namespace TechStacks.ServiceModel.Types
Public Partial Class Post
Public Overridable Property Id As Long
Public Overridable Property OrganizationId As Integer
Public Overridable Property UserId As Integer
Public Overridable Property Type As PostType
Public Overridable Property CategoryId As Integer
Public Overridable Property Title As String
Public Overridable Property Slug As String
Public Overridable Property Url As String
Public Overridable Property ImageUrl As String
<StringLength(Integer.MaxValue)>
Public Overridable Property Content As String
<StringLength(Integer.MaxValue)>
Public Overridable Property ContentHtml As String
Public Overridable Property PinCommentId As Long?
Public Overridable Property TechnologyIds As Integer()
Public Overridable Property FromDate As Date?
Public Overridable Property ToDate As Date?
Public Overridable Property Location As String
Public Overridable Property MetaType As String
Public Overridable Property Meta As String
Public Overridable Property Approved As Boolean
Public Overridable Property UpVotes As Long
Public Overridable Property DownVotes As Long
Public Overridable Property Points As Long
Public Overridable Property Views As Long
Public Overridable Property Favorites As Long
Public Overridable Property Subscribers As Integer
Public Overridable Property ReplyCount As Integer
Public Overridable Property CommentsCount As Integer
Public Overridable Property WordCount As Integer
Public Overridable Property ReportCount As Integer
Public Overridable Property LinksCount As Integer
Public Overridable Property LinkedToCount As Integer
Public Overridable Property Score As Integer
Public Overridable Property Rank As Integer
Public Overridable Property Labels As String()
Public Overridable Property RefUserIds As Integer()
Public Overridable Property RefLinks As String()
Public Overridable Property MuteUserIds As Integer()
Public Overridable Property LastCommentDate As Date?
Public Overridable Property LastCommentId As Long?
Public Overridable Property LastCommentUserId As Integer?
Public Overridable Property Deleted As Date?
Public Overridable Property DeletedBy As String
Public Overridable Property Locked As Date?
Public Overridable Property LockedBy As String
Public Overridable Property Hidden As Date?
Public Overridable Property HiddenBy As String
Public Overridable Property Status As String
Public Overridable Property StatusDate As Date?
Public Overridable Property StatusBy As String
Public Overridable Property Archived As Boolean
Public Overridable Property Bumped As Date?
Public Overridable Property Created As Date
Public Overridable Property CreatedBy As String
Public Overridable Property Modified As Date
Public Overridable Property ModifiedBy As String
Public Overridable Property RefId As Long?
Public Overridable Property RefSource As String
Public Overridable Property RefUrn As String
End Class
Public Partial Class PostComment
Public Overridable Property Id As Long
Public Overridable Property PostId As Long
Public Overridable Property UserId As Integer
Public Overridable Property ReplyId As Long?
<StringLength(Integer.MaxValue)>
Public Overridable Property Content As String
<StringLength(Integer.MaxValue)>
Public Overridable Property ContentHtml As String
Public Overridable Property Score As Integer
Public Overridable Property Rank As Integer
Public Overridable Property UpVotes As Long
Public Overridable Property DownVotes As Long
Public Overridable Property Favorites As Long
Public Overridable Property WordCount As Integer
Public Overridable Property ReportCount As Integer
Public Overridable Property Deleted As Date?
Public Overridable Property Hidden As Date?
Public Overridable Property Modified As Date
Public Overridable Property Created As Date
Public Overridable Property CreatedBy As String
Public Overridable Property RefId As Long?
Public Overridable Property RefSource As String
Public Overridable Property RefUrn As String
End Class
Public Enum PostType
Announcement
Post
Showcase
Question
Request
End Enum
End Namespace
End Namespace
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /posts/comment HTTP/1.1 Host: techstacks.io Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <QueryResponseOfPostCommentclPpLQp2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types"> <Offset>0</Offset> <Total>0</Total> <Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:PostComment> <d2p1:Content>String</d2p1:Content> <d2p1:ContentHtml>String</d2p1:ContentHtml> <d2p1:Created>0001-01-01T00:00:00</d2p1:Created> <d2p1:CreatedBy>String</d2p1:CreatedBy> <d2p1:Deleted>0001-01-01T00:00:00</d2p1:Deleted> <d2p1:DownVotes>0</d2p1:DownVotes> <d2p1:Favorites>0</d2p1:Favorites> <d2p1:Hidden>0001-01-01T00:00:00</d2p1:Hidden> <d2p1:Id>0</d2p1:Id> <d2p1:Modified>0001-01-01T00:00:00</d2p1:Modified> <d2p1:PostId>0</d2p1:PostId> <d2p1:Rank>0</d2p1:Rank> <d2p1:RefId>0</d2p1:RefId> <d2p1:RefSource>String</d2p1:RefSource> <d2p1:RefUrn>String</d2p1:RefUrn> <d2p1:ReplyId>0</d2p1:ReplyId> <d2p1:ReportCount>0</d2p1:ReportCount> <d2p1:Score>0</d2p1:Score> <d2p1:UpVotes>0</d2p1:UpVotes> <d2p1:UserId>0</d2p1:UserId> <d2p1:WordCount>0</d2p1:WordCount> </d2p1:PostComment> </Results> <Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>String</d2p1:Key> <d2p1:Value>String</d2p1:Value> </d2p1:KeyValueOfstringstring> </Meta> <ResponseStatus> <ErrorCode>String</ErrorCode> <Message>String</Message> <StackTrace>String</StackTrace> <Errors> <ResponseError> <ErrorCode>String</ErrorCode> <FieldName>String</FieldName> <Message>String</Message> <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> </Meta> </ResponseError> </Errors> <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> </Meta> </ResponseStatus> </QueryResponseOfPostCommentclPpLQp2>