Paŭlo Ebermann 3a48ba8bfd Update all the samples.
(except clojure + scalatra, because those are broken, will fixed with later master merge.)
2017-03-13 19:50:10 +01: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;