UNPKG

cwmsjs

Version:

CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps

34 lines (33 loc) 840 B
/* tslint:disable */ /* eslint-disable */ /** * CWMS Data API * CWMS REST API for Data Retrieval * * The version of the OpenAPI document: 2.3.2-2025.03.19 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export const StoreRule = { ReplaceAll: 'REPLACE ALL', DoNotReplace: 'DO NOT REPLACE', ReplaceMissingValuesOnly: 'REPLACE MISSING VALUES ONLY', ReplaceWithNonMissing: 'REPLACE WITH NON MISSING', DeleteInsert: 'DELETE INSERT' }; export function StoreRuleFromJSON(json) { return StoreRuleFromJSONTyped(json, false); } export function StoreRuleFromJSONTyped(json, ignoreDiscriminator) { return json; } export function StoreRuleToJSON(value) { return value; }