/** * Copyright (c) 2020 The Nuinalp Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ import { Model } from '@nuinalp/api-core/browser'; import { ProjectMember, User } from '..'; export default class Project extends Model { protected static adapter: any; id: string; slug: string; name: string; description?: string; image?: string; public?: boolean; favourite?: boolean; user_created: User; user_updated: User; setFavourite(value?: boolean): Promise; organization_id: string | null; members: ProjectMember[]; }