BokaMera.API.Host

<back to all web services

CreateCompanyCommentSuperAdminUser

Requires Authentication
Required role:superadmin
The following routes are available for this service:
POST/superadmin/company/{CompanyId}/commentsAdds a comment to the company.
<?php namespace dtos;

use DateTime;
use Exception;
use DateInterval;
use JsonSerializable;
use ServiceStack\{IReturn,IReturnVoid,IGet,IPost,IPut,IDelete,IPatch,IMeta,IHasSessionId,IHasBearerToken,IHasVersion};
use ServiceStack\{ICrud,ICreateDb,IUpdateDb,IPatchDb,IDeleteDb,ISaveDb,AuditBase,QueryDb,QueryDb2,QueryData,QueryData2,QueryResponse};
use ServiceStack\{ResponseStatus,ResponseError,EmptyResponse,IdResponse,ArrayList,KeyValuePair2,StringResponse,StringsResponse,Tuple2,Tuple3,ByteArray};
use ServiceStack\{JsonConverters,Returns,TypeContext};


enum CommentsType : int
{
    case NormalComment = 1;
    case CallBackPhoneComment = 2;
    case CallBackEmailComment = 3;
    case CallBackMeetingBookedComment = 4;
    case CallBackNotInterestedComment = 5;
}

class CommentsTypeResponse implements JsonSerializable
{
    public function __construct(
        /** @var int */
        public int $Id=0,
        /** @var string|null */
        public ?string $Name=null,
        /** @var string|null */
        public ?string $Description=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['Id'])) $this->Id = $o['Id'];
        if (isset($o['Name'])) $this->Name = $o['Name'];
        if (isset($o['Description'])) $this->Description = $o['Description'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->Id)) $o['Id'] = $this->Id;
        if (isset($this->Name)) $o['Name'] = $this->Name;
        if (isset($this->Description)) $o['Description'] = $this->Description;
        return empty($o) ? new class(){} : $o;
    }
}

class CompanyCommentsResponse implements JsonSerializable
{
    public function __construct(
        // @ApiMember()
        /** @var string|null */
        public ?string $CompanyId=null,

        // @ApiMember()
        /** @var int */
        public int $Id=0,

        // @ApiMember(IsRequired=true)
        /** @var string */
        public string $Comment='',

        // @ApiMember(IsRequired=true)
        /** @var CommentsType|null */
        public ?CommentsType $CommentTypeId=null,

        // @ApiMember(IsRequired=true)
        /** @var CommentsTypeResponse|null */
        public ?CommentsTypeResponse $CommentType=null,

        /** @description The updated date */
        // @ApiMember(Description="The updated date")
        /** @var DateTime */
        public DateTime $Updated=new DateTime(),

        /** @description The created date */
        // @ApiMember(Description="The created date")
        /** @var DateTime */
        public DateTime $Created=new DateTime(),

        /** @description The created by */
        // @ApiMember(Description="The created by")
        /** @var string|null */
        public ?string $CreatedBy=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
        if (isset($o['Id'])) $this->Id = $o['Id'];
        if (isset($o['Comment'])) $this->Comment = $o['Comment'];
        if (isset($o['CommentTypeId'])) $this->CommentTypeId = JsonConverters::from('CommentsType', $o['CommentTypeId']);
        if (isset($o['CommentType'])) $this->CommentType = JsonConverters::from('CommentsTypeResponse', $o['CommentType']);
        if (isset($o['Updated'])) $this->Updated = JsonConverters::from('DateTime', $o['Updated']);
        if (isset($o['Created'])) $this->Created = JsonConverters::from('DateTime', $o['Created']);
        if (isset($o['CreatedBy'])) $this->CreatedBy = $o['CreatedBy'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
        if (isset($this->Id)) $o['Id'] = $this->Id;
        if (isset($this->Comment)) $o['Comment'] = $this->Comment;
        if (isset($this->CommentTypeId)) $o['CommentTypeId'] = JsonConverters::to('CommentsType', $this->CommentTypeId);
        if (isset($this->CommentType)) $o['CommentType'] = JsonConverters::to('CommentsTypeResponse', $this->CommentType);
        if (isset($this->Updated)) $o['Updated'] = JsonConverters::to('DateTime', $this->Updated);
        if (isset($this->Created)) $o['Created'] = JsonConverters::to('DateTime', $this->Created);
        if (isset($this->CreatedBy)) $o['CreatedBy'] = $this->CreatedBy;
        return empty($o) ? new class(){} : $o;
    }
}

// @ApiResponse(Description="", StatusCode=400)
// @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
class CreateCompanyCommentSuperAdminUser implements ICompany, JsonSerializable
{
    public function __construct(
        /** @description Enter the companyId for the customer */
        // @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query")
        /** @var string */
        public string $CompanyId='',

        // @ApiMember(IsRequired=true)
        /** @var string */
        public string $Comment='',

        // @ApiMember(IsRequired=true)
        /** @var CommentsType|null */
        public ?CommentsType $CommentType=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
        if (isset($o['Comment'])) $this->Comment = $o['Comment'];
        if (isset($o['CommentType'])) $this->CommentType = JsonConverters::from('CommentsType', $o['CommentType']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
        if (isset($this->Comment)) $o['Comment'] = $this->Comment;
        if (isset($this->CommentType)) $o['CommentType'] = JsonConverters::to('CommentsType', $this->CommentType);
        return empty($o) ? new class(){} : $o;
    }
}

PHP CreateCompanyCommentSuperAdminUser 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 /superadmin/company/{CompanyId}/comments HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"CompanyId":"00000000-0000-0000-0000-000000000000","Comment":"String","CommentType":"NormalComment"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"CompanyId":"00000000-0000-0000-0000-000000000000","Id":0,"Comment":"String","CommentTypeId":"NormalComment","CommentType":{"Id":0,"Name":"String","Description":"String"},"CreatedBy":"String"}