2017-03-21 14:31:18 +08:00

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;