Test

<back to all web services

UpdateRockstarAuditTenant

"use strict";
/** @typedef Table {any} */
/** @typedef  TResponse {any} */
export class UpdateAuditBase {
    constructor(init) { Object.assign(this, init) }
}
/** @typedef Table {any} */
/** @typedef  TResponse {any} */
export class UpdateAuditTenantBase extends UpdateAuditBase {
    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 UpdateRockstarAuditTenant extends UpdateAuditTenantBase {
    /** @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 UpdateRockstarAuditTenant DTOs

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

HTTP + CSV

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

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

{"sessionId":"String","id":0,"firstName":"String","livingStatus":"Alive"}
HTTP/1.1 200 OK
Content-Type: text/csv
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"}}}