| GET,OPTIONS | /v1/quote/{QuoteUID} |
|---|
<?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 QuoteItem implements JsonSerializable
{
public function __construct(
/** @var int */
public int $QuoteItemID=0,
/** @var int */
public int $QuoteID=0,
/** @var string|null */
public ?string $ItemType=null,
/** @var int|null */
public ?int $SourceRefId=null,
/** @var int|null */
public ?int $JobID=null,
/** @var string|null */
public ?string $Name=null,
/** @var string|null */
public ?string $Description=null,
/** @var float|null */
public ?float $Quantity=null,
/** @var float|null */
public ?float $UnitPrice=null,
/** @var bool|null */
public ?bool $IsTaxable=null,
/** @var int|null */
public ?int $DisplayOrder=null,
/** @var bool|null */
public ?bool $IsDeleted=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['QuoteItemID'])) $this->QuoteItemID = $o['QuoteItemID'];
if (isset($o['QuoteID'])) $this->QuoteID = $o['QuoteID'];
if (isset($o['ItemType'])) $this->ItemType = $o['ItemType'];
if (isset($o['SourceRefId'])) $this->SourceRefId = $o['SourceRefId'];
if (isset($o['JobID'])) $this->JobID = $o['JobID'];
if (isset($o['Name'])) $this->Name = $o['Name'];
if (isset($o['Description'])) $this->Description = $o['Description'];
if (isset($o['Quantity'])) $this->Quantity = $o['Quantity'];
if (isset($o['UnitPrice'])) $this->UnitPrice = $o['UnitPrice'];
if (isset($o['IsTaxable'])) $this->IsTaxable = $o['IsTaxable'];
if (isset($o['DisplayOrder'])) $this->DisplayOrder = $o['DisplayOrder'];
if (isset($o['IsDeleted'])) $this->IsDeleted = $o['IsDeleted'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->QuoteItemID)) $o['QuoteItemID'] = $this->QuoteItemID;
if (isset($this->QuoteID)) $o['QuoteID'] = $this->QuoteID;
if (isset($this->ItemType)) $o['ItemType'] = $this->ItemType;
if (isset($this->SourceRefId)) $o['SourceRefId'] = $this->SourceRefId;
if (isset($this->JobID)) $o['JobID'] = $this->JobID;
if (isset($this->Name)) $o['Name'] = $this->Name;
if (isset($this->Description)) $o['Description'] = $this->Description;
if (isset($this->Quantity)) $o['Quantity'] = $this->Quantity;
if (isset($this->UnitPrice)) $o['UnitPrice'] = $this->UnitPrice;
if (isset($this->IsTaxable)) $o['IsTaxable'] = $this->IsTaxable;
if (isset($this->DisplayOrder)) $o['DisplayOrder'] = $this->DisplayOrder;
if (isset($this->IsDeleted)) $o['IsDeleted'] = $this->IsDeleted;
return empty($o) ? new class(){} : $o;
}
}
class Quote implements JsonSerializable
{
public function __construct(
/** @var int */
public int $QuoteID=0,
/** @var string */
public string $QuoteUID='',
/** @var string|null */
public ?string $TenantId=null,
/** @var string|null */
public ?string $BranchId=null,
/** @var int */
public int $ProjectID=0,
/** @var string|null */
public ?string $ProjectUID=null,
/** @var string|null */
public ?string $ProjectName=null,
/** @var string|null */
public ?string $Name=null,
/** @var string|null */
public ?string $Status=null,
/** @var float|null */
public ?float $Total=null,
/** @var string|null */
public ?string $Notes=null,
/** @var string|null */
public ?string $Currency=null,
/** @var string|null */
public ?string $FromName=null,
/** @var string|null */
public ?string $FromPhone=null,
/** @var string|null */
public ?string $FromEmail=null,
/** @var string|null */
public ?string $FromAddress=null,
/** @var string|null */
public ?string $ToName=null,
/** @var string|null */
public ?string $ToPhone=null,
/** @var string|null */
public ?string $ToEmail=null,
/** @var string|null */
public ?string $ToAddress=null,
/** @var DateTime|null */
public ?DateTime $ExpiresAt=null,
/** @var bool|null */
public ?bool $IsLocked=null,
/** @var bool|null */
public ?bool $FinalPriceAfterCompletion=null,
/** @var string|null */
public ?string $ApprovedByName=null,
/** @var DateTime|null */
public ?DateTime $ApprovedAt=null,
/** @var string|null */
public ?string $DeclinedByName=null,
/** @var DateTime|null */
public ?DateTime $DeclinedAt=null,
/** @var string|null */
public ?string $DeclineReason=null,
/** @var string|null */
public ?string $CreatedBy=null,
/** @var DateTime|null */
public ?DateTime $CreatedAt=null,
/** @var string|null */
public ?string $UpdatedBy=null,
/** @var DateTime|null */
public ?DateTime $UpdatedAt=null,
/** @var array<QuoteItem>|null */
public ?array $Items=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['TenantId'])) $this->TenantId = $o['TenantId'];
if (isset($o['BranchId'])) $this->BranchId = $o['BranchId'];
if (isset($o['ProjectID'])) $this->ProjectID = $o['ProjectID'];
if (isset($o['ProjectUID'])) $this->ProjectUID = $o['ProjectUID'];
if (isset($o['ProjectName'])) $this->ProjectName = $o['ProjectName'];
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['Notes'])) $this->Notes = $o['Notes'];
if (isset($o['Currency'])) $this->Currency = $o['Currency'];
if (isset($o['FromName'])) $this->FromName = $o['FromName'];
if (isset($o['FromPhone'])) $this->FromPhone = $o['FromPhone'];
if (isset($o['FromEmail'])) $this->FromEmail = $o['FromEmail'];
if (isset($o['FromAddress'])) $this->FromAddress = $o['FromAddress'];
if (isset($o['ToName'])) $this->ToName = $o['ToName'];
if (isset($o['ToPhone'])) $this->ToPhone = $o['ToPhone'];
if (isset($o['ToEmail'])) $this->ToEmail = $o['ToEmail'];
if (isset($o['ToAddress'])) $this->ToAddress = $o['ToAddress'];
if (isset($o['ExpiresAt'])) $this->ExpiresAt = JsonConverters::from('DateTime', $o['ExpiresAt']);
if (isset($o['IsLocked'])) $this->IsLocked = $o['IsLocked'];
if (isset($o['FinalPriceAfterCompletion'])) $this->FinalPriceAfterCompletion = $o['FinalPriceAfterCompletion'];
if (isset($o['ApprovedByName'])) $this->ApprovedByName = $o['ApprovedByName'];
if (isset($o['ApprovedAt'])) $this->ApprovedAt = JsonConverters::from('DateTime', $o['ApprovedAt']);
if (isset($o['DeclinedByName'])) $this->DeclinedByName = $o['DeclinedByName'];
if (isset($o['DeclinedAt'])) $this->DeclinedAt = JsonConverters::from('DateTime', $o['DeclinedAt']);
if (isset($o['DeclineReason'])) $this->DeclineReason = $o['DeclineReason'];
if (isset($o['CreatedBy'])) $this->CreatedBy = $o['CreatedBy'];
if (isset($o['CreatedAt'])) $this->CreatedAt = JsonConverters::from('DateTime', $o['CreatedAt']);
if (isset($o['UpdatedBy'])) $this->UpdatedBy = $o['UpdatedBy'];
if (isset($o['UpdatedAt'])) $this->UpdatedAt = JsonConverters::from('DateTime', $o['UpdatedAt']);
if (isset($o['Items'])) $this->Items = JsonConverters::fromArray('QuoteItem', $o['Items']);
}
/** @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->TenantId)) $o['TenantId'] = $this->TenantId;
if (isset($this->BranchId)) $o['BranchId'] = $this->BranchId;
if (isset($this->ProjectID)) $o['ProjectID'] = $this->ProjectID;
if (isset($this->ProjectUID)) $o['ProjectUID'] = $this->ProjectUID;
if (isset($this->ProjectName)) $o['ProjectName'] = $this->ProjectName;
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->Notes)) $o['Notes'] = $this->Notes;
if (isset($this->Currency)) $o['Currency'] = $this->Currency;
if (isset($this->FromName)) $o['FromName'] = $this->FromName;
if (isset($this->FromPhone)) $o['FromPhone'] = $this->FromPhone;
if (isset($this->FromEmail)) $o['FromEmail'] = $this->FromEmail;
if (isset($this->FromAddress)) $o['FromAddress'] = $this->FromAddress;
if (isset($this->ToName)) $o['ToName'] = $this->ToName;
if (isset($this->ToPhone)) $o['ToPhone'] = $this->ToPhone;
if (isset($this->ToEmail)) $o['ToEmail'] = $this->ToEmail;
if (isset($this->ToAddress)) $o['ToAddress'] = $this->ToAddress;
if (isset($this->ExpiresAt)) $o['ExpiresAt'] = JsonConverters::to('DateTime', $this->ExpiresAt);
if (isset($this->IsLocked)) $o['IsLocked'] = $this->IsLocked;
if (isset($this->FinalPriceAfterCompletion)) $o['FinalPriceAfterCompletion'] = $this->FinalPriceAfterCompletion;
if (isset($this->ApprovedByName)) $o['ApprovedByName'] = $this->ApprovedByName;
if (isset($this->ApprovedAt)) $o['ApprovedAt'] = JsonConverters::to('DateTime', $this->ApprovedAt);
if (isset($this->DeclinedByName)) $o['DeclinedByName'] = $this->DeclinedByName;
if (isset($this->DeclinedAt)) $o['DeclinedAt'] = JsonConverters::to('DateTime', $this->DeclinedAt);
if (isset($this->DeclineReason)) $o['DeclineReason'] = $this->DeclineReason;
if (isset($this->CreatedBy)) $o['CreatedBy'] = $this->CreatedBy;
if (isset($this->CreatedAt)) $o['CreatedAt'] = JsonConverters::to('DateTime', $this->CreatedAt);
if (isset($this->UpdatedBy)) $o['UpdatedBy'] = $this->UpdatedBy;
if (isset($this->UpdatedAt)) $o['UpdatedAt'] = JsonConverters::to('DateTime', $this->UpdatedAt);
if (isset($this->Items)) $o['Items'] = JsonConverters::toArray('QuoteItem', $this->Items);
return empty($o) ? new class(){} : $o;
}
}
class QuoteResponse implements JsonSerializable
{
public function __construct(
/** @var ResponseStatus|null */
public ?ResponseStatus $ResponseStatus=null,
/** @var Quote|null */
public ?Quote $Quote=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['ResponseStatus'])) $this->ResponseStatus = JsonConverters::from('ResponseStatus', $o['ResponseStatus']);
if (isset($o['Quote'])) $this->Quote = JsonConverters::from('Quote', $o['Quote']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->ResponseStatus)) $o['ResponseStatus'] = JsonConverters::to('ResponseStatus', $this->ResponseStatus);
if (isset($this->Quote)) $o['Quote'] = JsonConverters::to('Quote', $this->Quote);
return empty($o) ? new class(){} : $o;
}
}
class GetQuoteRequest implements JsonSerializable
{
public function __construct(
/** @var string */
public string $QuoteUID=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['QuoteUID'])) $this->QuoteUID = $o['QuoteUID'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->QuoteUID)) $o['QuoteUID'] = $this->QuoteUID;
return empty($o) ? new class(){} : $o;
}
}
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
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/quote/{QuoteUID} 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"}},"Quote":{"QuoteID":0,"QuoteUID":"00000000000000000000000000000000","TenantId":"00000000000000000000000000000000","BranchId":"00000000000000000000000000000000","ProjectID":0,"ProjectUID":"00000000000000000000000000000000","ProjectName":"String","Name":"String","Status":"String","Total":0,"Notes":"String","Currency":"String","FromName":"String","FromPhone":"String","FromEmail":"String","FromAddress":"String","ToName":"String","ToPhone":"String","ToEmail":"String","ToAddress":"String","ExpiresAt":"0001-01-01T00:00:00.0000000","IsLocked":false,"FinalPriceAfterCompletion":false,"ApprovedByName":"String","ApprovedAt":"0001-01-01T00:00:00.0000000","DeclinedByName":"String","DeclinedAt":"0001-01-01T00:00:00.0000000","DeclineReason":"String","CreatedBy":"String","CreatedAt":"0001-01-01T00:00:00.0000000","UpdatedBy":"String","UpdatedAt":"0001-01-01T00:00:00.0000000","Items":[{"QuoteItemID":0,"QuoteID":0,"ItemType":"String","SourceRefId":0,"JobID":0,"Name":"String","Description":"String","Quantity":0,"UnitPrice":0,"IsTaxable":false,"DisplayOrder":0,"IsDeleted":false}]}}