cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
65 lines (57 loc) • 1.54 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* CWMS Data API
* CWMS REST API for Data Retrieval
*
* The version of the OpenAPI document: 2.4.0-2026.3.16
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from '../runtime';
/**
*
* @export
* @interface IndependentRoundingSpec
*/
export interface IndependentRoundingSpec {
/**
*
* @type {number}
* @memberof IndependentRoundingSpec
*/
position?: number;
/**
*
* @type {string}
* @memberof IndependentRoundingSpec
*/
value?: string;
}
export function IndependentRoundingSpecFromJSON(json: any): IndependentRoundingSpec {
return IndependentRoundingSpecFromJSONTyped(json, false);
}
export function IndependentRoundingSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndependentRoundingSpec {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'position': !exists(json, 'position') ? undefined : json['position'],
'value': !exists(json, 'value') ? undefined : json['value'],
};
}
export function IndependentRoundingSpecToJSON(value?: IndependentRoundingSpec | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'position': value.position,
'value': value.value,
};
}