| Requires any of the roles: | bookingsupplier-administrator-write, bookingsupplier-administrator-read, superadmin |
| GET | /rebatecodes/statuses | Get RebateCode statuses | Get RebateCode statuses |
|---|
"use strict";
export class RebateCodeStatusItem {
/** @param {{Id?:number,RebateCodeStatusName?:string,RebateCodeStatusDescription?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
Id;
/** @type {string} */
RebateCodeStatusName;
/** @type {string} */
RebateCodeStatusDescription;
}
export class RebateCodeStatusResponse {
/** @param {{ResponseStatus?:ResponseStatus,RebateCodeStatusItems?:RebateCodeStatusItem[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {RebateCodeStatusItem[]} */
RebateCodeStatusItems = [];
}
export class GetRebateCodeStatus {
/** @param {{Id?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {?number}
* @description RebateCodeId */
Id;
}
JavaScript GetRebateCodeStatus DTOs
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.
GET /rebatecodes/statuses HTTP/1.1 Host: api.bokamera.se Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
RebateCodeStatusItems:
[
{
Id: 0,
RebateCodeStatusName: String,
RebateCodeStatusDescription: String
}
]
}