forked from loafle/openapi-generator-original
27 lines
392 B
JavaScript
27 lines
392 B
JavaScript
goog.provide('API.Client.ApiResponse');
|
|
|
|
/**
|
|
* Describes the result of uploading an image resource
|
|
* @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;
|
|
|