namespace BlazorDiffusion.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<DataContract>]
[<AllowNullLiteral>]
type AuditBase() =
[<DataMember(Order=1)>]
member val CreatedDate:DateTime = new DateTime() with get,set
[<DataMember(Order=2)>]
[<Required>]
member val CreatedBy:String = null with get,set
[<DataMember(Order=3)>]
member val ModifiedDate:DateTime = new DateTime() with get,set
[<DataMember(Order=4)>]
[<Required>]
member val ModifiedBy:String = null with get,set
[<DataMember(Order=5)>]
member val DeletedDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set
[<DataMember(Order=6)>]
member val DeletedBy:String = null with get,set
[<AllowNullLiteral>]
type ArtifactComment() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
member val ArtifactId:Int32 = new Int32() with get,set
member val ReplyId:Nullable<Int32> = new Nullable<Int32>() with get,set
member val Content:String = null with get,set
member val UpVotes:Int32 = new Int32() with get,set
member val DownVotes:Int32 = new Int32() with get,set
member val Votes:Int32 = new Int32() with get,set
member val FlagReason:String = null with get,set
member val Notes:String = null with get,set
member val RefId:String = null with get,set
member val AppUserId:Int32 = new Int32() with get,set
[<ValidateRequest(Validator="IsAuthenticated")>]
[<AllowNullLiteral>]
type CreateArtifactComment() =
member val ArtifactId:Int32 = new Int32() with get,set
member val ReplyId:Nullable<Int32> = new Nullable<Int32>() with get,set
[<Validate(Validator="Length(1,280)")>]
member val Content:String = null with get,set
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.
POST /xml/reply/CreateArtifactComment HTTP/1.1
Host: blazordiffusion.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateArtifactComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlazorDiffusion.ServiceModel">
<ArtifactId>0</ArtifactId>
<Content>String</Content>
<ReplyId>0</ReplyId>
</CreateArtifactComment>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ArtifactComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlazorDiffusion.ServiceModel"> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUserId>0</AppUserId> <ArtifactId>0</ArtifactId> <Content>String</Content> <DownVotes>0</DownVotes> <FlagReason>String</FlagReason> <Id>0</Id> <Notes>String</Notes> <RefId>String</RefId> <ReplyId>0</ReplyId> <UpVotes>0</UpVotes> <Votes>0</Votes> </ArtifactComment>