kentico-cloud-delivery
Version:
Official Kentico Cloud Delivery SDK
32 lines • 1.2 kB
JavaScript
export var TypeResponses;
(function (TypeResponses) {
var ListContentTypesResponse = /** @class */ (function () {
/**
* Response containing multiple types
* @constructor
* @param {IContentType[]} types - Content types
* @param {Pagination} pagination - Pagination object
*/
function ListContentTypesResponse(types, pagination, debug) {
this.types = types;
this.pagination = pagination;
this.debug = debug;
}
return ListContentTypesResponse;
}());
TypeResponses.ListContentTypesResponse = ListContentTypesResponse;
var ViewContentTypeResponse = /** @class */ (function () {
/**
* Response containing single type
* @constructor
* @param {IContentType} type - Content type
*/
function ViewContentTypeResponse(type, debug) {
this.type = type;
this.debug = debug;
}
return ViewContentTypeResponse;
}());
TypeResponses.ViewContentTypeResponse = ViewContentTypeResponse;
})(TypeResponses || (TypeResponses = {}));
//# sourceMappingURL=responses.js.map