/**
* @fileoverview
* @author Brandon Alexander - balexander@willowgarage.com
*/
var assign = require('object-assign');
/**
* A ServiceResponse is returned from the service call.
*
* @constructor
* @param values - object matching the fields defined in the .srv definition file
*/
function ServiceResponse(values) {
assign(this, values);
}
module.exports = ServiceResponse;