Required role: | superadmin |
DELETE | /superadmin/company/{CompanyId}/comments/{Id} | Delete a comment. |
---|
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
class CommentsType(IntEnum):
NORMAL_COMMENT = 1
CALL_BACK_PHONE_COMMENT = 2
CALL_BACK_EMAIL_COMMENT = 3
CALL_BACK_MEETING_BOOKED_COMMENT = 4
CALL_BACK_NOT_INTERESTED_COMMENT = 5
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class CommentsTypeResponse:
id: int = 0
name: Optional[str] = None
description: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class CompanyCommentsResponse:
# @ApiMember()
company_id: Optional[str] = None
# @ApiMember()
id: int = 0
# @ApiMember(IsRequired=true)
comment: Optional[str] = None
# @ApiMember(IsRequired=true)
comment_type_id: Optional[CommentsType] = None
# @ApiMember(IsRequired=true)
comment_type: Optional[CommentsTypeResponse] = None
# @ApiMember(Description="The updated date")
updated: datetime.datetime = datetime.datetime(1, 1, 1)
"""
The updated date
"""
# @ApiMember(Description="The created date")
created: datetime.datetime = datetime.datetime(1, 1, 1)
"""
The created date
"""
# @ApiMember(Description="The created by")
created_by: Optional[str] = None
"""
The created by
"""
# @ApiResponse(Description="", StatusCode=400)
# @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DeleteCompanyCommentSuperAdminUser(ICompany):
# @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query")
company_id: Optional[str] = None
"""
Enter the companyId for the customer
"""
# @ApiMember(IsRequired=true, ParameterType="query")
id: int = 0
Python DeleteCompanyCommentSuperAdminUser DTOs
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.
DELETE /superadmin/company/{CompanyId}/comments/{Id} HTTP/1.1 Host: testapi.bokamera.se Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <CompanyCommentsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <Comment>String</Comment> <CommentType> <Description>String</Description> <Id>0</Id> <Name>String</Name> </CommentType> <CommentTypeId>NormalComment</CommentTypeId> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <Created>0001-01-01T00:00:00</Created> <CreatedBy>String</CreatedBy> <Id>0</Id> <Updated>0001-01-01T00:00:00</Updated> </CompanyCommentsResponse>