| Requires any of the roles: | Client, Admin, Partner |
| GET | /lookup_list_categories |
|---|
<?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};
// @DataContract
class LookupListCategoriesLookup implements JsonSerializable
{
public function __construct(
// @DataMember(Order=2)
/** @var string|null */
public ?string $Description=null,
// @DataMember(Order=3)
/** @var bool|null */
public ?bool $IsEnabled=null,
// @DataMember(Order=4)
/** @var int|null */
public ?int $TenantId=null,
// @DataMember(Order=5)
/** @var string */
public string $RowVersionGuid=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['Description'])) $this->Description = $o['Description'];
if (isset($o['IsEnabled'])) $this->IsEnabled = $o['IsEnabled'];
if (isset($o['TenantId'])) $this->TenantId = $o['TenantId'];
if (isset($o['RowVersionGuid'])) $this->RowVersionGuid = $o['RowVersionGuid'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->Description)) $o['Description'] = $this->Description;
if (isset($this->IsEnabled)) $o['IsEnabled'] = $this->IsEnabled;
if (isset($this->TenantId)) $o['TenantId'] = $this->TenantId;
if (isset($this->RowVersionGuid)) $o['RowVersionGuid'] = $this->RowVersionGuid;
return empty($o) ? new class(){} : $o;
}
}
PHP LookupListCategoriesLookup 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 /lookup_list_categories HTTP/1.1 Host: duengageapi.uat.scadsoftware.com Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
[{"Description":"String","IsEnabled":false,"TenantId":0,"RowVersionGuid":"00000000000000000000000000000000","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}]