| GET,OPTIONS | /v1/qbo/pending-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 QboPendingQuote implements JsonSerializable
{
public function __construct(
/** @var int */
public int $QuoteID=0,
/** @var string */
public string $QuoteUID='',
/** @var string|null */
public ?string $Name=null,
/** @var string|null */
public ?string $Status=null,
/** @var DateTime|null */
public ?DateTime $QuoteDate=null,
/** @var float|null */
public ?float $Total=null,
/** @var string|null */
public ?string $CustomerName=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['Name'])) $this->Name = $o['Name'];
if (isset($o['Status'])) $this->Status = $o['Status'];
if (isset($o['QuoteDate'])) $this->QuoteDate = JsonConverters::from('DateTime', $o['QuoteDate']);
if (isset($o['Total'])) $this->Total = $o['Total'];
if (isset($o['CustomerName'])) $this->CustomerName = $o['CustomerName'];
}
/** @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->Name)) $o['Name'] = $this->Name;
if (isset($this->Status)) $o['Status'] = $this->Status;
if (isset($this->QuoteDate)) $o['QuoteDate'] = JsonConverters::to('DateTime', $this->QuoteDate);
if (isset($this->Total)) $o['Total'] = $this->Total;
if (isset($this->CustomerName)) $o['CustomerName'] = $this->CustomerName;
return empty($o) ? new class(){} : $o;
}
}
class QboPendingQuotesResponse implements JsonSerializable
{
public function __construct(
/** @var array<QboPendingQuote>|null */
public ?array $Quotes=null,
/** @var ResponseStatus|null */
public ?ResponseStatus $ResponseStatus=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['Quotes'])) $this->Quotes = JsonConverters::fromArray('QboPendingQuote', $o['Quotes']);
if (isset($o['ResponseStatus'])) $this->ResponseStatus = JsonConverters::from('ResponseStatus', $o['ResponseStatus']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->Quotes)) $o['Quotes'] = JsonConverters::toArray('QboPendingQuote', $this->Quotes);
if (isset($this->ResponseStatus)) $o['ResponseStatus'] = JsonConverters::to('ResponseStatus', $this->ResponseStatus);
return empty($o) ? new class(){} : $o;
}
}
class QboPendingQuotesRequest implements JsonSerializable
{
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
return empty($o) ? new class(){} : $o;
}
}
PHP QboPendingQuotesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/qbo/pending-quotes HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"Quotes":[{"QuoteID":0,"QuoteUID":"00000000000000000000000000000000","Name":"String","Status":"String","QuoteDate":"0001-01-01T00:00:00.0000000","Total":0,"CustomerName":"String"}],"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}