Trendsic Platform Service

<back to all web services

ProjectQuotesRequest

Requires Authentication
The following routes are available for this service:
GET,OPTIONS/v1/project/{ProjectUID}/quotes
<?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};


class QuoteSummary implements JsonSerializable
{
    public function __construct(
        /** @var int */
        public int $QuoteID=0,
        /** @var string */
        public string $QuoteUID='',
        /** @var int */
        public int $ProjectID=0,
        /** @var string|null */
        public ?string $Name=null,
        /** @var string|null */
        public ?string $Status=null,
        /** @var float|null */
        public ?float $Total=null,
        /** @var bool|null */
        public ?bool $IsLocked=null,
        /** @var string|null */
        public ?string $ApprovedByName=null,
        /** @var DateTime|null */
        public ?DateTime $ApprovedAt=null,
        /** @var DateTime|null */
        public ?DateTime $DeclinedAt=null,
        /** @var DateTime|null */
        public ?DateTime $ExpiresAt=null,
        /** @var DateTime|null */
        public ?DateTime $CreatedAt=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['QuoteID'])) $this->QuoteID = $o['QuoteID'];
        if (isset($o['QuoteUID'])) $this->QuoteUID = $o['QuoteUID'];
        if (isset($o['ProjectID'])) $this->ProjectID = $o['ProjectID'];
        if (isset($o['Name'])) $this->Name = $o['Name'];
        if (isset($o['Status'])) $this->Status = $o['Status'];
        if (isset($o['Total'])) $this->Total = $o['Total'];
        if (isset($o['IsLocked'])) $this->IsLocked = $o['IsLocked'];
        if (isset($o['ApprovedByName'])) $this->ApprovedByName = $o['ApprovedByName'];
        if (isset($o['ApprovedAt'])) $this->ApprovedAt = JsonConverters::from('DateTime', $o['ApprovedAt']);
        if (isset($o['DeclinedAt'])) $this->DeclinedAt = JsonConverters::from('DateTime', $o['DeclinedAt']);
        if (isset($o['ExpiresAt'])) $this->ExpiresAt = JsonConverters::from('DateTime', $o['ExpiresAt']);
        if (isset($o['CreatedAt'])) $this->CreatedAt = JsonConverters::from('DateTime', $o['CreatedAt']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->QuoteID)) $o['QuoteID'] = $this->QuoteID;
        if (isset($this->QuoteUID)) $o['QuoteUID'] = $this->QuoteUID;
        if (isset($this->ProjectID)) $o['ProjectID'] = $this->ProjectID;
        if (isset($this->Name)) $o['Name'] = $this->Name;
        if (isset($this->Status)) $o['Status'] = $this->Status;
        if (isset($this->Total)) $o['Total'] = $this->Total;
        if (isset($this->IsLocked)) $o['IsLocked'] = $this->IsLocked;
        if (isset($this->ApprovedByName)) $o['ApprovedByName'] = $this->ApprovedByName;
        if (isset($this->ApprovedAt)) $o['ApprovedAt'] = JsonConverters::to('DateTime', $this->ApprovedAt);
        if (isset($this->DeclinedAt)) $o['DeclinedAt'] = JsonConverters::to('DateTime', $this->DeclinedAt);
        if (isset($this->ExpiresAt)) $o['ExpiresAt'] = JsonConverters::to('DateTime', $this->ExpiresAt);
        if (isset($this->CreatedAt)) $o['CreatedAt'] = JsonConverters::to('DateTime', $this->CreatedAt);
        return empty($o) ? new class(){} : $o;
    }
}

class QuoteListResponse implements JsonSerializable
{
    public function __construct(
        /** @var ResponseStatus|null */
        public ?ResponseStatus $ResponseStatus=null,
        /** @var array<QuoteSummary>|null */
        public ?array $Quotes=null
    ) {
    }

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

class ProjectQuotesRequest implements JsonSerializable
{
    public function __construct(
        /** @var string */
        public string $ProjectUID=''
    ) {
    }

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

PHP ProjectQuotesRequest 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.

GET /v1/project/{ProjectUID}/quotes HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Quotes":[{"QuoteID":0,"QuoteUID":"00000000000000000000000000000000","ProjectID":0,"Name":"String","Status":"String","Total":0,"IsLocked":false,"ApprovedByName":"String","ApprovedAt":"0001-01-01T00:00:00.0000000","DeclinedAt":"0001-01-01T00:00:00.0000000","ExpiresAt":"0001-01-01T00:00:00.0000000","CreatedAt":"0001-01-01T00:00:00.0000000"}]}