/** Identifiers for a project. */
export interface ProjectIdentifiers {
  /** The ID of the created project. */
  id: number;
  /** The key of the created project. */
  key: string;
  /** The URL of the created project. */
  self: string;
}
