/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { SimpleUserAsResponse } from "../definitions/SimpleUserAsResponse"; export interface ProjectAsResponse { owner_url: string; url: string; html_url: string; columns_url: string; id: number; node_id: string; /** * Name of the project */ name: string; /** * Body of the project */ body: string | null; number: number; /** * State of the project; either 'open' or 'closed' */ state: "closed" | "open"; creator: null | SimpleUserAsResponse; created_at: string; updated_at: string; /** * The baseline permission that all organization members have on this project. Only present if owner is an organization. */ organization_permission?: "read" | "write" | "admin" | "none"; /** * Whether or not this project can be seen by everyone. Only present if owner is an organization. */ private?: boolean; } //# sourceMappingURL=ProjectAsResponse.d.ts.map