/**
 * 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
 * @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;
}
/**
 * Check if a given object implements the ProjectLock interface.
 */
export declare function instanceOfProjectLock(value: object): boolean;
export declare function ProjectLockFromJSON(json: any): ProjectLock;
export declare function ProjectLockFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectLock;
export declare function ProjectLockToJSON(value?: ProjectLock | null): any;
