UNPKG

cwmsjs

Version:

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

70 lines (69 loc) 1.44 kB
/** * 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. */ /** * * @export * @interface ProjectLock */ export interface ProjectLock { /** * Owning office of object. * @type {string} * @memberof ProjectLock */ officeId: string; /** * * @type {string} * @memberof ProjectLock */ projectId?: string; /** * * @type {string} * @memberof ProjectLock */ applicationId?: string; /** * * @type {Date} * @memberof ProjectLock */ acquireTime?: Date; /** * * @type {string} * @memberof ProjectLock */ sessionUser?: string; /** * * @type {string} * @memberof ProjectLock */ osUser?: string; /** * * @type {string} * @memberof ProjectLock */ sessionProgram?: string; /** * * @type {string} * @memberof ProjectLock */ sessionMachine?: string; } export declare function ProjectLockFromJSON(json: any): ProjectLock; export declare function ProjectLockFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectLock; export declare function ProjectLockToJSON(value?: ProjectLock | null): any;