| All Verbs | /my-feed |
|---|
<?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};
// @ValidateRequest(Validator="IsAuthenticated")
class GetUserFeed implements IGet, JsonSerializable
{
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
return empty($o) ? new class(){} : $o;
}
}
class TechnologyStackBase implements JsonSerializable
{
public function __construct(
/** @var int|null */
public ?int $id=null,
/** @var string */
public string $name='',
/** @var string */
public string $vendorName='',
/** @var string */
public string $description='',
/** @var string */
public string $appUrl='',
/** @var string */
public string $screenshotUrl='',
/** @var DateTime|null */
public ?DateTime $created=null,
/** @var string */
public string $createdBy='',
/** @var DateTime|null */
public ?DateTime $lastModified=null,
/** @var string */
public string $lastModifiedBy='',
/** @var bool|null */
public ?bool $isLocked=null,
/** @var string */
public string $ownerId='',
/** @var string */
public string $slug='',
// @StringLength(2147483647)
/** @var string */
public string $details='',
// @StringLength(2147483647)
/** @var string */
public string $detailsHtml='',
/** @var DateTime|null */
public ?DateTime $lastStatusUpdate=null,
/** @var int|null */
public ?int $organizationId=null,
/** @var int|null */
public ?int $commentsPostId=null,
/** @var int|null */
public ?int $viewCount=null,
/** @var int|null */
public ?int $favCount=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['id'])) $this->id = $o['id'];
if (isset($o['name'])) $this->name = $o['name'];
if (isset($o['vendorName'])) $this->vendorName = $o['vendorName'];
if (isset($o['description'])) $this->description = $o['description'];
if (isset($o['appUrl'])) $this->appUrl = $o['appUrl'];
if (isset($o['screenshotUrl'])) $this->screenshotUrl = $o['screenshotUrl'];
if (isset($o['created'])) $this->created = JsonConverters::from('DateTime', $o['created']);
if (isset($o['createdBy'])) $this->createdBy = $o['createdBy'];
if (isset($o['lastModified'])) $this->lastModified = JsonConverters::from('DateTime', $o['lastModified']);
if (isset($o['lastModifiedBy'])) $this->lastModifiedBy = $o['lastModifiedBy'];
if (isset($o['isLocked'])) $this->isLocked = $o['isLocked'];
if (isset($o['ownerId'])) $this->ownerId = $o['ownerId'];
if (isset($o['slug'])) $this->slug = $o['slug'];
if (isset($o['details'])) $this->details = $o['details'];
if (isset($o['detailsHtml'])) $this->detailsHtml = $o['detailsHtml'];
if (isset($o['lastStatusUpdate'])) $this->lastStatusUpdate = JsonConverters::from('DateTime', $o['lastStatusUpdate']);
if (isset($o['organizationId'])) $this->organizationId = $o['organizationId'];
if (isset($o['commentsPostId'])) $this->commentsPostId = $o['commentsPostId'];
if (isset($o['viewCount'])) $this->viewCount = $o['viewCount'];
if (isset($o['favCount'])) $this->favCount = $o['favCount'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->id)) $o['id'] = $this->id;
if (isset($this->name)) $o['name'] = $this->name;
if (isset($this->vendorName)) $o['vendorName'] = $this->vendorName;
if (isset($this->description)) $o['description'] = $this->description;
if (isset($this->appUrl)) $o['appUrl'] = $this->appUrl;
if (isset($this->screenshotUrl)) $o['screenshotUrl'] = $this->screenshotUrl;
if (isset($this->created)) $o['created'] = JsonConverters::to('DateTime', $this->created);
if (isset($this->createdBy)) $o['createdBy'] = $this->createdBy;
if (isset($this->lastModified)) $o['lastModified'] = JsonConverters::to('DateTime', $this->lastModified);
if (isset($this->lastModifiedBy)) $o['lastModifiedBy'] = $this->lastModifiedBy;
if (isset($this->isLocked)) $o['isLocked'] = $this->isLocked;
if (isset($this->ownerId)) $o['ownerId'] = $this->ownerId;
if (isset($this->slug)) $o['slug'] = $this->slug;
if (isset($this->details)) $o['details'] = $this->details;
if (isset($this->detailsHtml)) $o['detailsHtml'] = $this->detailsHtml;
if (isset($this->lastStatusUpdate)) $o['lastStatusUpdate'] = JsonConverters::to('DateTime', $this->lastStatusUpdate);
if (isset($this->organizationId)) $o['organizationId'] = $this->organizationId;
if (isset($this->commentsPostId)) $o['commentsPostId'] = $this->commentsPostId;
if (isset($this->viewCount)) $o['viewCount'] = $this->viewCount;
if (isset($this->favCount)) $o['favCount'] = $this->favCount;
return empty($o) ? new class(){} : $o;
}
}
enum TechnologyTier : string
{
case ProgrammingLanguage = 'ProgrammingLanguage';
case Client = 'Client';
case Http = 'Http';
case Server = 'Server';
case Data = 'Data';
case SoftwareInfrastructure = 'SoftwareInfrastructure';
case OperatingSystem = 'OperatingSystem';
case HardwareInfrastructure = 'HardwareInfrastructure';
case ThirdPartyServices = 'ThirdPartyServices';
}
class TechnologyBase implements JsonSerializable
{
public function __construct(
/** @var int|null */
public ?int $id=null,
/** @var string */
public string $name='',
/** @var string */
public string $vendorName='',
/** @var string */
public string $vendorUrl='',
/** @var string */
public string $productUrl='',
/** @var string */
public string $logoUrl='',
/** @var string */
public string $description='',
/** @var DateTime|null */
public ?DateTime $created=null,
/** @var string */
public string $createdBy='',
/** @var DateTime|null */
public ?DateTime $lastModified=null,
/** @var string */
public string $lastModifiedBy='',
/** @var string */
public string $ownerId='',
/** @var string */
public string $slug='',
/** @var bool|null */
public ?bool $logoApproved=null,
/** @var bool|null */
public ?bool $isLocked=null,
/** @var TechnologyTier|null */
public ?TechnologyTier $tier=null,
/** @var DateTime|null */
public ?DateTime $lastStatusUpdate=null,
/** @var int|null */
public ?int $organizationId=null,
/** @var int|null */
public ?int $commentsPostId=null,
/** @var int|null */
public ?int $viewCount=null,
/** @var int|null */
public ?int $favCount=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['id'])) $this->id = $o['id'];
if (isset($o['name'])) $this->name = $o['name'];
if (isset($o['vendorName'])) $this->vendorName = $o['vendorName'];
if (isset($o['vendorUrl'])) $this->vendorUrl = $o['vendorUrl'];
if (isset($o['productUrl'])) $this->productUrl = $o['productUrl'];
if (isset($o['logoUrl'])) $this->logoUrl = $o['logoUrl'];
if (isset($o['description'])) $this->description = $o['description'];
if (isset($o['created'])) $this->created = JsonConverters::from('DateTime', $o['created']);
if (isset($o['createdBy'])) $this->createdBy = $o['createdBy'];
if (isset($o['lastModified'])) $this->lastModified = JsonConverters::from('DateTime', $o['lastModified']);
if (isset($o['lastModifiedBy'])) $this->lastModifiedBy = $o['lastModifiedBy'];
if (isset($o['ownerId'])) $this->ownerId = $o['ownerId'];
if (isset($o['slug'])) $this->slug = $o['slug'];
if (isset($o['logoApproved'])) $this->logoApproved = $o['logoApproved'];
if (isset($o['isLocked'])) $this->isLocked = $o['isLocked'];
if (isset($o['tier'])) $this->tier = JsonConverters::from('TechnologyTier', $o['tier']);
if (isset($o['lastStatusUpdate'])) $this->lastStatusUpdate = JsonConverters::from('DateTime', $o['lastStatusUpdate']);
if (isset($o['organizationId'])) $this->organizationId = $o['organizationId'];
if (isset($o['commentsPostId'])) $this->commentsPostId = $o['commentsPostId'];
if (isset($o['viewCount'])) $this->viewCount = $o['viewCount'];
if (isset($o['favCount'])) $this->favCount = $o['favCount'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->id)) $o['id'] = $this->id;
if (isset($this->name)) $o['name'] = $this->name;
if (isset($this->vendorName)) $o['vendorName'] = $this->vendorName;
if (isset($this->vendorUrl)) $o['vendorUrl'] = $this->vendorUrl;
if (isset($this->productUrl)) $o['productUrl'] = $this->productUrl;
if (isset($this->logoUrl)) $o['logoUrl'] = $this->logoUrl;
if (isset($this->description)) $o['description'] = $this->description;
if (isset($this->created)) $o['created'] = JsonConverters::to('DateTime', $this->created);
if (isset($this->createdBy)) $o['createdBy'] = $this->createdBy;
if (isset($this->lastModified)) $o['lastModified'] = JsonConverters::to('DateTime', $this->lastModified);
if (isset($this->lastModifiedBy)) $o['lastModifiedBy'] = $this->lastModifiedBy;
if (isset($this->ownerId)) $o['ownerId'] = $this->ownerId;
if (isset($this->slug)) $o['slug'] = $this->slug;
if (isset($this->logoApproved)) $o['logoApproved'] = $this->logoApproved;
if (isset($this->isLocked)) $o['isLocked'] = $this->isLocked;
if (isset($this->tier)) $o['tier'] = JsonConverters::to('TechnologyTier', $this->tier);
if (isset($this->lastStatusUpdate)) $o['lastStatusUpdate'] = JsonConverters::to('DateTime', $this->lastStatusUpdate);
if (isset($this->organizationId)) $o['organizationId'] = $this->organizationId;
if (isset($this->commentsPostId)) $o['commentsPostId'] = $this->commentsPostId;
if (isset($this->viewCount)) $o['viewCount'] = $this->viewCount;
if (isset($this->favCount)) $o['favCount'] = $this->favCount;
return empty($o) ? new class(){} : $o;
}
}
class TechnologyInStack extends TechnologyBase implements JsonSerializable
{
/**
* @param int|null $id
* @param string $name
* @param string $vendorName
* @param string $vendorUrl
* @param string $productUrl
* @param string $logoUrl
* @param string $description
* @param DateTime|null $created
* @param string $createdBy
* @param DateTime|null $lastModified
* @param string $lastModifiedBy
* @param string $ownerId
* @param string $slug
* @param bool|null $logoApproved
* @param bool|null $isLocked
* @param TechnologyTier|null $tier
* @param DateTime|null $lastStatusUpdate
* @param int|null $organizationId
* @param int|null $commentsPostId
* @param int|null $viewCount
* @param int|null $favCount
*/
public function __construct(
?int $id=null,
string $name='',
string $vendorName='',
string $vendorUrl='',
string $productUrl='',
string $logoUrl='',
string $description='',
?DateTime $created=null,
string $createdBy='',
?DateTime $lastModified=null,
string $lastModifiedBy='',
string $ownerId='',
string $slug='',
?bool $logoApproved=null,
?bool $isLocked=null,
?TechnologyTier $tier=null,
?DateTime $lastStatusUpdate=null,
?int $organizationId=null,
?int $commentsPostId=null,
?int $viewCount=null,
?int $favCount=null,
/** @var int|null */
public ?int $technologyId=null,
/** @var int|null */
public ?int $technologyStackId=null,
/** @var string */
public string $justification=''
) {
parent::__construct($id,$name,$vendorName,$vendorUrl,$productUrl,$logoUrl,$description,$created,$createdBy,$lastModified,$lastModifiedBy,$ownerId,$slug,$logoApproved,$isLocked,$tier,$lastStatusUpdate,$organizationId,$commentsPostId,$viewCount,$favCount);
}
/** @throws Exception */
public function fromMap($o): void {
parent::fromMap($o);
if (isset($o['technologyId'])) $this->technologyId = $o['technologyId'];
if (isset($o['technologyStackId'])) $this->technologyStackId = $o['technologyStackId'];
if (isset($o['justification'])) $this->justification = $o['justification'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = parent::jsonSerialize();
if (isset($this->technologyId)) $o['technologyId'] = $this->technologyId;
if (isset($this->technologyStackId)) $o['technologyStackId'] = $this->technologyStackId;
if (isset($this->justification)) $o['justification'] = $this->justification;
return empty($o) ? new class(){} : $o;
}
}
class TechStackDetails extends TechnologyStackBase implements JsonSerializable
{
/**
* @param int|null $id
* @param string $name
* @param string $vendorName
* @param string $description
* @param string $appUrl
* @param string $screenshotUrl
* @param DateTime|null $created
* @param string $createdBy
* @param DateTime|null $lastModified
* @param string $lastModifiedBy
* @param bool|null $isLocked
* @param string $ownerId
* @param string $slug
* @param string $details
* @param string $detailsHtml
* @param DateTime|null $lastStatusUpdate
* @param int|null $organizationId
* @param int|null $commentsPostId
* @param int|null $viewCount
* @param int|null $favCount
*/
public function __construct(
?int $id=null,
string $name='',
string $vendorName='',
string $description='',
string $appUrl='',
string $screenshotUrl='',
?DateTime $created=null,
string $createdBy='',
?DateTime $lastModified=null,
string $lastModifiedBy='',
?bool $isLocked=null,
string $ownerId='',
string $slug='',
string $details='',
string $detailsHtml='',
?DateTime $lastStatusUpdate=null,
?int $organizationId=null,
?int $commentsPostId=null,
?int $viewCount=null,
?int $favCount=null,
/** @var array<TechnologyInStack>|null */
public ?array $technologyChoices=null
) {
parent::__construct($id,$name,$vendorName,$description,$appUrl,$screenshotUrl,$created,$createdBy,$lastModified,$lastModifiedBy,$isLocked,$ownerId,$slug,$details,$detailsHtml,$lastStatusUpdate,$organizationId,$commentsPostId,$viewCount,$favCount);
}
/** @throws Exception */
public function fromMap($o): void {
parent::fromMap($o);
if (isset($o['technologyChoices'])) $this->technologyChoices = JsonConverters::fromArray('TechnologyInStack', $o['technologyChoices']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = parent::jsonSerialize();
if (isset($this->technologyChoices)) $o['technologyChoices'] = JsonConverters::toArray('TechnologyInStack', $this->technologyChoices);
return empty($o) ? new class(){} : $o;
}
}
class GetUserFeedResponse implements JsonSerializable
{
public function __construct(
/** @var array<TechStackDetails>|null */
public ?array $results=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['results'])) $this->results = JsonConverters::fromArray('TechStackDetails', $o['results']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->results)) $o['results'] = JsonConverters::toArray('TechStackDetails', $this->results);
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 /my-feed HTTP/1.1
Host: techstacks.io
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
results:
[
{
technologyChoices:
[
{
technologyId: 0,
technologyStackId: 0,
justification: String,
id: 0,
name: String,
vendorName: String,
vendorUrl: String,
productUrl: String,
logoUrl: String,
description: String,
created: 0001-01-01,
createdBy: String,
lastModified: 0001-01-01,
lastModifiedBy: String,
ownerId: String,
slug: String,
logoApproved: False,
isLocked: False,
tier: ProgrammingLanguage,
lastStatusUpdate: 0001-01-01,
organizationId: 0,
commentsPostId: 0,
viewCount: 0,
favCount: 0
}
],
id: 0,
name: String,
vendorName: String,
description: String,
appUrl: String,
screenshotUrl: String,
created: 0001-01-01,
createdBy: String,
lastModified: 0001-01-01,
lastModifiedBy: String,
isLocked: False,
ownerId: String,
slug: String,
details: String,
detailsHtml: String,
lastStatusUpdate: 0001-01-01,
organizationId: 0,
commentsPostId: 0,
viewCount: 0,
favCount: 0
}
]
}