@mft/moneyhub-api-client
Version:
Node.JS client for the Moneyhub API
21 lines • 496 B
TypeScript
declare type ProjectType = "PropertyProject" | "RentalProject" | "GenericProject";
export interface ProjectPatch {
name?: string;
accountIds?: string[];
type?: ProjectType;
archived?: boolean;
}
export interface ProjectPost {
name: string;
accountIds?: string[];
type: ProjectType;
}
export interface Project {
id: string;
name: string;
type: ProjectType;
dateCreated?: string;
archived?: boolean;
}
export {};
//# sourceMappingURL=project.d.ts.map