/**
 * Neynar API
 * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 3.175.0
 * Contact: team@neynar.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { ListDeployments200ResponseInnerProductionAppStatus } from './list-deployments200-response-inner-production-app-status';
export interface ListDeployments200ResponseInner {
    /**
     * Creation timestamp
     */
    'created_at': string;
    /**
     * Deletion timestamp
     */
    'deleted_at': string | null;
    /**
     * Dev server process state: stopped, starting, running, crashed, or hung
     */
    'dev_server_state'?: ListDeployments200ResponseInnerDevServerStateEnum;
    /**
     * Display name for the project
     */
    'display_name'?: string;
    /**
     * Whether a generated app exists in the deployment
     */
    'generated_app_exists': boolean;
    /**
     * Whether the generated app is currently serving
     */
    'generated_app_serving': boolean;
    /**
     * GitHub repository SSH URL
     */
    'github_url'?: string;
    /**
     * Whether the deployment has a Neon database configured
     */
    'has_database'?: boolean;
    /**
     * Deployment ID
     */
    'id': string;
    /**
     * Deployment is ready to serve app and accept prompts
     */
    'is_ready': boolean;
    /**
     * Kubernetes deployment name
     */
    'name': string;
    /**
     * Kubernetes namespace
     */
    'namespace': string;
    'production_app_status'?: ListDeployments200ResponseInnerProductionAppStatus;
    /**
     * Last update timestamp
     */
    'updated_at': string | null;
    /**
     * Public URL for the deployment
     */
    'url'?: string;
}
export declare const ListDeployments200ResponseInnerDevServerStateEnum: {
    readonly Stopped: "stopped";
    readonly Starting: "starting";
    readonly Running: "running";
    readonly Crashed: "crashed";
    readonly Hung: "hung";
};
export type ListDeployments200ResponseInnerDevServerStateEnum = typeof ListDeployments200ResponseInnerDevServerStateEnum[keyof typeof ListDeployments200ResponseInnerDevServerStateEnum];
