Test

<back to all web services

PatchRockstarAuditTenant

"use strict";
/** @typedef Table {any} */
/** @typedef  TResponse {any} */
export class PatchAuditBase {
    constructor(init) { Object.assign(this, init) }
}
/** @typedef Table {any} */
/** @typedef  TResponse {any} */
export class PatchAuditTenantBase extends PatchAuditBase {
    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 PatchRockstarAuditTenant extends PatchAuditTenantBase {
    /** @param {{sessionId?:string,id?:number,firstName?:string,livingStatus?:LivingStatus}} [init] */
    constructor(init) { super(init); Object.assign(this, init) }
    /** @type {string} */
    sessionId;
    /** @type {number} */
    id;
    /** @type {string} */
    firstName;
    /** @type {?LivingStatus} */
    livingStatus;
}

JavaScript PatchRockstarAuditTenant DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/PatchRockstarAuditTenant HTTP/1.1 
Host: test.servicestack.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	sessionId: String,
	id: 0,
	firstName: String,
	livingStatus: Alive
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	result: 
	{
		id: 0,
		firstName: String,
		lastName: String,
		age: 0,
		dateOfBirth: 0001-01-01,
		dateDied: 0001-01-01,
		livingStatus: Alive
	},
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}