forked from loafle/openapi-generator-original
26 lines
337 B
JavaScript
26 lines
337 B
JavaScript
goog.provide('API.Client.ApiResponse');
|
|
|
|
/**
|
|
* @record
|
|
*/
|
|
API.Client.ApiResponse = function() {}
|
|
|
|
/**
|
|
* @type {!number}
|
|
* @export
|
|
*/
|
|
API.Client.ApiResponse.prototype.code;
|
|
|
|
/**
|
|
* @type {!string}
|
|
* @export
|
|
*/
|
|
API.Client.ApiResponse.prototype.type;
|
|
|
|
/**
|
|
* @type {!string}
|
|
* @export
|
|
*/
|
|
API.Client.ApiResponse.prototype.message;
|
|
|