"use strict";
/** @typedef Table {any} */
/** @typedef TResponse {any} */
export class SoftDeleteAuditBase {
constructor(init) { Object.assign(this, init) }
}
/** @typedef Table {any} */
/** @typedef TResponse {any} */
export class SoftDeleteAuditTenantBase extends SoftDeleteAuditBase {
constructor(init) { super(init); Object.assign(this, init) }
}
/** @typedef {'Alive'|'Dead'} */
export var LivingStatus;
(function (LivingStatus) {
LivingStatus["Alive"] = "Alive"
LivingStatus["Dead"] = "Dead"
})(LivingStatus || (LivingStatus = {}));
export class RockstarBase {
/** @param {{firstName?:string,lastName?:string,age?:number,dateOfBirth?:string,dateDied?:string,livingStatus?:LivingStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
firstName;
/** @type {string} */
lastName;
/** @type {?number} */
age;
/** @type {string} */
dateOfBirth;
/** @type {?string} */
dateDied;
/** @type {LivingStatus} */
livingStatus;
}
export class RockstarAuto extends RockstarBase {
/** @param {{id?:number,firstName?:string,lastName?:string,age?:number,dateOfBirth?:string,dateDied?:string,livingStatus?:LivingStatus}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
}
export class RockstarWithIdAndResultResponse {
/** @param {{id?:number,result?:RockstarAuto,responseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {RockstarAuto} */
result;
/** @type {ResponseStatus} */
responseStatus;
}
export class AuditBase {
/** @param {{createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
createdDate;
/** @type {string} */
createdBy;
/** @type {string} */
modifiedDate;
/** @type {string} */
modifiedBy;
/** @type {?string} */
deletedDate;
/** @type {string} */
deletedBy;
}
export class RockstarAuditTenant extends AuditBase {
/** @param {{tenantId?:number,id?:number,firstName?:string,lastName?:string,age?:number,dateOfBirth?:string,dateDied?:string,livingStatus?:LivingStatus,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
tenantId;
/** @type {number} */
id;
/** @type {string} */
firstName;
/** @type {string} */
lastName;
/** @type {?number} */
age;
/** @type {string} */
dateOfBirth;
/** @type {?string} */
dateDied;
/** @type {LivingStatus} */
livingStatus;
}
export class SoftDeleteAuditTenant extends SoftDeleteAuditTenantBase {
/** @param {{id?:number}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
}
JavaScript SoftDeleteAuditTenant DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsonl/reply/SoftDeleteAuditTenant HTTP/1.1
Host: test.servicestack.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"id":0}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"id":0,"result":{"id":0,"firstName":"String","lastName":"String","age":0,"dateOfBirth":"\/Date(-62135596800000-0000)\/","dateDied":"\/Date(-62135596800000-0000)\/","livingStatus":"Alive"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}