Required role: | REGISUserRole |
POST | /correspondence |
---|
<?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 LetterSentResponse implements JsonSerializable
{
public function __construct(
/** @var ResponseStatus|null */
public ?ResponseStatus $responseStatus=null,
/** @var int */
public int $regent_id=0,
/** @var string|null */
public ?string $document_name=null,
/** @var string|null */
public ?string $document_description=null,
/** @var string|null */
public ?string $program=null,
/** @var string|null */
public ?string $letter_status=null,
/** @var string|null */
public ?string $application_status=null,
/** @var DateTime|null */
public ?DateTime $application_date=null,
/** @var DateTime|null */
public ?DateTime $added_date=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['responseStatus'])) $this->responseStatus = JsonConverters::from('ResponseStatus', $o['responseStatus']);
if (isset($o['regent_id'])) $this->regent_id = $o['regent_id'];
if (isset($o['document_name'])) $this->document_name = $o['document_name'];
if (isset($o['document_description'])) $this->document_description = $o['document_description'];
if (isset($o['program'])) $this->program = $o['program'];
if (isset($o['letter_status'])) $this->letter_status = $o['letter_status'];
if (isset($o['application_status'])) $this->application_status = $o['application_status'];
if (isset($o['application_date'])) $this->application_date = JsonConverters::from('DateTime', $o['application_date']);
if (isset($o['added_date'])) $this->added_date = JsonConverters::from('DateTime', $o['added_date']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->responseStatus)) $o['responseStatus'] = JsonConverters::to('ResponseStatus', $this->responseStatus);
if (isset($this->regent_id)) $o['regent_id'] = $this->regent_id;
if (isset($this->document_name)) $o['document_name'] = $this->document_name;
if (isset($this->document_description)) $o['document_description'] = $this->document_description;
if (isset($this->program)) $o['program'] = $this->program;
if (isset($this->letter_status)) $o['letter_status'] = $this->letter_status;
if (isset($this->application_status)) $o['application_status'] = $this->application_status;
if (isset($this->application_date)) $o['application_date'] = JsonConverters::to('DateTime', $this->application_date);
if (isset($this->added_date)) $o['added_date'] = JsonConverters::to('DateTime', $this->added_date);
return empty($o) ? new class(){} : $o;
}
}
class LetterSentRequest implements JsonSerializable
{
public function __construct(
/** @var int */
public int $pid=0
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['pid'])) $this->pid = $o['pid'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->pid)) $o['pid'] = $this->pid;
return empty($o) ? new class(){} : $o;
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /correspondence HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
pid: 0
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }, regent_id: 0, document_name: String, document_description: String, program: String, letter_status: String, application_status: String, application_date: 0001-01-01, added_date: 0001-01-01 }