| POST | /{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/listCheck | ||
|---|---|---|---|
| All Verbs | /{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/{listCount} | ||
| All Verbs | /{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/{listCount}/{searchString} |
<?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 Brand : string
{
case Desktop = 'Desktop';
case Hp = 'Hp';
case Kyocera = 'Kyocera';
case NeaScan = 'NeaScan';
case Samsung = 'Samsung';
case FujiXerox = 'FujiXerox';
case Ta = 'Ta';
case Utax = 'Utax';
case Epson = 'Epson';
case ScanFront400 = 'ScanFront400';
case Sharp = 'Sharp';
case Ricoh = 'Ricoh';
case FujiFilm = 'FujiFilm';
}
class DtoBase implements JsonSerializable
{
public function __construct(
/** @var Brand|null */
public ?Brand $Brand=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['Brand'])) $this->Brand = JsonConverters::from('Brand', $o['Brand']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->Brand)) $o['Brand'] = JsonConverters::to('Brand', $this->Brand);
return empty($o) ? new class(){} : $o;
}
}
class RequestBase extends DtoBase implements JsonSerializable
{
/**
* @param Brand|null $Brand
*/
public function __construct(
?Brand $Brand=null
) {
parent::__construct($Brand);
}
/** @throws Exception */
public function fromMap($o): void {
parent::fromMap($o);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = parent::jsonSerialize();
return empty($o) ? new class(){} : $o;
}
}
class QuestionRequestDto extends RequestBase implements JsonSerializable
{
/**
* @param Brand|null $Brand
*/
public function __construct(
?Brand $Brand=null,
/** @var string|null */
public ?string $TemplateGuid=null,
/** @var string|null */
public ?string $QuestionGuid=null,
/** @var string|null */
public ?string $Parent=null,
/** @var string|null */
public ?string $FolderBrowser=null
) {
parent::__construct($Brand);
}
/** @throws Exception */
public function fromMap($o): void {
parent::fromMap($o);
if (isset($o['TemplateGuid'])) $this->TemplateGuid = $o['TemplateGuid'];
if (isset($o['QuestionGuid'])) $this->QuestionGuid = $o['QuestionGuid'];
if (isset($o['Parent'])) $this->Parent = $o['Parent'];
if (isset($o['FolderBrowser'])) $this->FolderBrowser = $o['FolderBrowser'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = parent::jsonSerialize();
if (isset($this->TemplateGuid)) $o['TemplateGuid'] = $this->TemplateGuid;
if (isset($this->QuestionGuid)) $o['QuestionGuid'] = $this->QuestionGuid;
if (isset($this->Parent)) $o['Parent'] = $this->Parent;
if (isset($this->FolderBrowser)) $o['FolderBrowser'] = $this->FolderBrowser;
return empty($o) ? new class(){} : $o;
}
}
class QuestionPickList extends QuestionRequestDto implements JsonSerializable
{
/**
* @param Brand|null $Brand
* @param string|null $TemplateGuid
* @param string|null $QuestionGuid
* @param string|null $Parent
* @param string|null $FolderBrowser
*/
public function __construct(
?Brand $Brand=null,
?string $TemplateGuid=null,
?string $QuestionGuid=null,
?string $Parent=null,
?string $FolderBrowser=null,
/** @var string|null */
public ?string $PickListGuid=null,
/** @var string|null */
public ?string $listCount=null,
/** @var string|null */
public ?string $searchString=null
) {
parent::__construct($Brand,$TemplateGuid,$QuestionGuid,$Parent,$FolderBrowser);
}
/** @throws Exception */
public function fromMap($o): void {
parent::fromMap($o);
if (isset($o['PickListGuid'])) $this->PickListGuid = $o['PickListGuid'];
if (isset($o['listCount'])) $this->listCount = $o['listCount'];
if (isset($o['searchString'])) $this->searchString = $o['searchString'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = parent::jsonSerialize();
if (isset($this->PickListGuid)) $o['PickListGuid'] = $this->PickListGuid;
if (isset($this->listCount)) $o['listCount'] = $this->listCount;
if (isset($this->searchString)) $o['searchString'] = $this->searchString;
return empty($o) ? new class(){} : $o;
}
}
class QuestionPickListValue extends QuestionPickList implements JsonSerializable
{
/**
* @param Brand|null $Brand
* @param string|null $TemplateGuid
* @param string|null $QuestionGuid
* @param string|null $Parent
* @param string|null $FolderBrowser
* @param string|null $PickListGuid
* @param string|null $listCount
* @param string|null $searchString
*/
public function __construct(
?Brand $Brand=null,
?string $TemplateGuid=null,
?string $QuestionGuid=null,
?string $Parent=null,
?string $FolderBrowser=null,
?string $PickListGuid=null,
?string $listCount=null,
?string $searchString=null,
/** @var string|null */
public ?string $PickListSelectedValue=null
) {
parent::__construct($Brand,$TemplateGuid,$QuestionGuid,$Parent,$FolderBrowser,$PickListGuid,$listCount,$searchString);
}
/** @throws Exception */
public function fromMap($o): void {
parent::fromMap($o);
if (isset($o['PickListSelectedValue'])) $this->PickListSelectedValue = $o['PickListSelectedValue'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = parent::jsonSerialize();
if (isset($this->PickListSelectedValue)) $o['PickListSelectedValue'] = $this->PickListSelectedValue;
return empty($o) ? new class(){} : $o;
}
}
PHP QuestionPickListValue 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.
POST /{Brand}/question/{TemplateGuid}/{QuestionGuid}/{PickListGuid}/listCheck HTTP/1.1
Host: buildmax.org
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<QuestionPickListValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScannerVision.WebService.ServiceModel">
<Brand>Desktop</Brand>
<FolderBrowser>String</FolderBrowser>
<Parent>String</Parent>
<QuestionGuid>String</QuestionGuid>
<TemplateGuid>String</TemplateGuid>
<PickListGuid>String</PickListGuid>
<listCount>String</listCount>
<searchString>String</searchString>
<PickListSelectedValue>String</PickListSelectedValue>
</QuestionPickListValue>