/**
 * The project API version
 */
export interface VersionGetResponse {
    /**
     * Always "project"
     */
    api: 'project';
    /**
     * The project API version
     */
    version: string;
    /**
     * Always "production"
     */
    environment: 'production';
}
