1313 */
1414
1515import { mapValues } from '../runtime' ;
16- import type { OtherScanMetrics } from './OtherScanMetrics' ;
17- import {
18- OtherScanMetricsFromJSON ,
19- OtherScanMetricsFromJSONTyped ,
20- OtherScanMetricsToJSON ,
21- OtherScanMetricsToJSONTyped ,
22- } from './OtherScanMetrics' ;
2316import type { CityScanMetric } from './CityScanMetric' ;
2417import {
2518 CityScanMetricFromJSON ,
@@ -66,10 +59,10 @@ export interface CityScanMetrics {
6659 metrics ?: Array < CityScanMetric > ;
6760 /**
6861 *
69- * @type {OtherScanMetrics }
62+ * @type {object }
7063 * @memberof CityScanMetrics
7164 */
72- other_metrics ?: OtherScanMetrics ;
65+ other_metrics ?: object ;
7366}
7467
7568/**
@@ -106,7 +99,7 @@ export function CityScanMetricsFromJSONTyped(json: any, ignoreDiscriminator: boo
10699 'facet' : json [ 'facet' ] == null ? undefined : json [ 'facet' ] ,
107100 'unit_reference' : json [ 'unit_reference' ] == null ? undefined : json [ 'unit_reference' ] ,
108101 'metrics' : json [ 'metrics' ] == null ? undefined : ( ( json [ 'metrics' ] as Array < any > ) . map ( CityScanMetricFromJSON ) ) ,
109- 'other_metrics' : json [ 'other_metrics' ] == null ? undefined : OtherScanMetricsFromJSON ( json [ 'other_metrics' ] ) ,
102+ 'other_metrics' : json [ 'other_metrics' ] == null ? undefined : json [ 'other_metrics' ] ,
110103 } ;
111104}
112105
@@ -126,7 +119,7 @@ export function CityScanMetricsToJSONTyped(value?: CityScanMetrics | null, ignor
126119 'facet' : value [ 'facet' ] ,
127120 'unit_reference' : value [ 'unit_reference' ] ,
128121 'metrics' : value [ 'metrics' ] == null ? undefined : ( ( value [ 'metrics' ] as Array < any > ) . map ( CityScanMetricToJSON ) ) ,
129- 'other_metrics' : OtherScanMetricsToJSON ( value [ 'other_metrics' ] ) ,
122+ 'other_metrics' : value [ 'other_metrics' ] ,
130123 } ;
131124}
132125
0 commit comments