2016-08-03 15:00:07 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-08-03 15:00:07 -07:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2015-05-27 14:57:54 -07:00
|
|
|
export class MeasureValues {
|
2016-08-03 15:00:07 -07:00
|
|
|
constructor(
|
|
|
|
public runIndex: number, public timeStamp: Date, public values: {[key: string]: any}) {}
|
2015-05-27 14:57:54 -07:00
|
|
|
|
|
|
|
toJson() {
|
|
|
|
return {
|
2016-09-19 17:15:57 -07:00
|
|
|
'timeStamp': this.timeStamp.toJSON(),
|
2015-05-27 14:57:54 -07:00
|
|
|
'runIndex': this.runIndex,
|
2016-09-19 17:15:57 -07:00
|
|
|
'values': this.values,
|
2015-05-27 14:57:54 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|