Required role: | Admin |
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="IsAdmin")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AdminUpdateArtifactComment(IPatchDb[ArtifactComment]):
id: int = 0
reply_id: Optional[int] = None
# @Validate(Validator="Length(1,280)")
content: Optional[str] = None
notes: Optional[str] = None
flag_reason: Optional[str] = None
Python AdminUpdateArtifactComment DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsonl/reply/AdminUpdateArtifactComment HTTP/1.1
Host: blazordiffusion.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"id":0,"replyId":0,"content":"String","notes":"String","flagReason":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl 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"}