UNPKG

cwmsjs

Version:

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

57 lines (49 loc) 1.2 kB
/* 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 ProjectLockId */ export interface ProjectLockId { /** * * @type {string} * @memberof ProjectLockId */ id?: string; } export function ProjectLockIdFromJSON(json: any): ProjectLockId { return ProjectLockIdFromJSONTyped(json, false); } export function ProjectLockIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectLockId { if ((json === undefined) || (json === null)) { return json; } return { 'id': !exists(json, 'id') ? undefined : json['id'], }; } export function ProjectLockIdToJSON(value?: ProjectLockId | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'id': value.id, }; }