Blazor Diffusion

<back to all web services

UpdateArtifactComment

Comments
Requires Authentication
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 UpdateArtifactComment() = 
        member val Id:Int32 = new Int32() with get,set
        member val Content:String = null with get,set

F# UpdateArtifactComment DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /json/reply/UpdateArtifactComment HTTP/1.1 
Host: blazordiffusion.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"id":0,"content":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"id":0,"artifactId":0,"replyId":0,"content":"String","upVotes":0,"downVotes":0,"votes":0,"flagReason":"String","notes":"String","refId":"String","appUserId":0,"createdDate":"0001-01-01T00:00:00","createdBy":"String","modifiedDate":"0001-01-01T00:00:00","modifiedBy":"String","deletedDate":"0001-01-01T00:00:00","deletedBy":"String"}