Blazor Diffusion

<back to all web services

CreateArtifactComment

Comments
Requires Authentication
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AuditBase:
    created_date: datetime.datetime = datetime.datetime(1, 1, 1)
    # @Required()
    created_by: Optional[str] = None

    modified_date: datetime.datetime = datetime.datetime(1, 1, 1)
    # @Required()
    modified_by: Optional[str] = None

    deleted_date: Optional[datetime.datetime] = None
    deleted_by: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ArtifactComment(AuditBase):
    id: int = 0
    artifact_id: int = 0
    reply_id: Optional[int] = None
    content: Optional[str] = None
    up_votes: int = 0
    down_votes: int = 0
    votes: int = 0
    flag_reason: Optional[str] = None
    notes: Optional[str] = None
    ref_id: Optional[str] = None
    app_user_id: int = 0


# @ValidateRequest(Validator="IsAuthenticated")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class CreateArtifactComment(ICreateDb[ArtifactComment]):
    artifact_id: int = 0
    reply_id: Optional[int] = None
    # @Validate(Validator="Length(1,280)")
    content: Optional[str] = None

Python CreateArtifactComment DTOs

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

HTTP + JSV

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

POST /jsv/reply/CreateArtifactComment HTTP/1.1 
Host: blazordiffusion.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	artifactId: 0,
	replyId: 0,
	content: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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-01,
	createdBy: String,
	modifiedDate: 0001-01-01,
	modifiedBy: String,
	deletedDate: 0001-01-01,
	deletedBy: String
}