@monaco-protocol/client-v2 0.0.2-dev.8 → 0.0.2-dev.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { DocumentReference } from './DocumentReference';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -63,6 +64,12 @@ export interface MarketSummary {
|
|
|
63
64
|
* @memberof MarketSummary
|
|
64
65
|
*/
|
|
65
66
|
settledAt?: Date;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {DocumentReference}
|
|
70
|
+
* @memberof MarketSummary
|
|
71
|
+
*/
|
|
72
|
+
event?: DocumentReference;
|
|
66
73
|
}
|
|
67
74
|
/**
|
|
68
75
|
* @export
|
|
@@ -19,6 +19,7 @@ exports.MarketSummaryFromJSON = MarketSummaryFromJSON;
|
|
|
19
19
|
exports.MarketSummaryFromJSONTyped = MarketSummaryFromJSONTyped;
|
|
20
20
|
exports.MarketSummaryToJSON = MarketSummaryToJSON;
|
|
21
21
|
exports.MarketSummaryToJSONTyped = MarketSummaryToJSONTyped;
|
|
22
|
+
const DocumentReference_1 = require("./DocumentReference");
|
|
22
23
|
/**
|
|
23
24
|
* @export
|
|
24
25
|
*/
|
|
@@ -62,6 +63,7 @@ function MarketSummaryFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
62
63
|
'status': json['status'] == null ? undefined : json['status'],
|
|
63
64
|
'lockAt': json['lockAt'] == null ? undefined : (new Date(json['lockAt'])),
|
|
64
65
|
'settledAt': json['settledAt'] == null ? undefined : (new Date(json['settledAt'])),
|
|
66
|
+
'event': json['event'] == null ? undefined : (0, DocumentReference_1.DocumentReferenceFromJSON)(json['event']),
|
|
65
67
|
};
|
|
66
68
|
}
|
|
67
69
|
function MarketSummaryToJSON(json) {
|
|
@@ -80,5 +82,6 @@ function MarketSummaryToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
80
82
|
'status': value['status'],
|
|
81
83
|
'lockAt': value['lockAt'] == null ? undefined : ((value['lockAt']).toISOString()),
|
|
82
84
|
'settledAt': value['settledAt'] == null ? undefined : ((value['settledAt']).toISOString()),
|
|
85
|
+
'event': (0, DocumentReference_1.DocumentReferenceToJSON)(value['event']),
|
|
83
86
|
};
|
|
84
87
|
}
|