/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

export type UpdateProjectRequest = {
    name?: string;
    startDate?: string;
    endDate?: string;
    onSiteHourlyRate?: number;
    remoteHourlyRate?: number;
    client?: string;
    contactEmail?: string;
    contactPhoneNumber?: string;
    contactName?: string;
    street?: string;
    houseNumber?: string;
    postalCode?: string;
    city?: string;
    description?: string;
    paymentMonthDay?: number;
    githubOrganisation?: string;
    jiraOrganisation?: string;
}
