pub struct ProjectBudgetReportResult {
pub budget_spent: Option<f64>,
pub client_id: Option<i64>,
pub budget_by: Option<String>,
pub budget: Option<f64>,
pub project_name: Option<String>,
pub budget_is_monthly: Option<bool>,
pub budget_remaining: Option<f64>,
pub is_active: Option<bool>,
pub client_name: Option<String>,
pub project_id: Option<i64>,
}Fields§
§budget_spent: Option<f64>The total hours or money spent against the project’s budget. If Time Rounding is turned on, the hours will be rounded according to your settings. If the project is budgeted by money, this value will only be visible to Administrators and Project Managers with the View billable rates and amounts permission.
client_id: Option<i64>The ID of the client associated with this project.
budget_by: Option<String>The method by which the project is budgeted. Options: project (Hours Per Project), project_cost (Total Project Fees), task (Hours Per Task), task_fees (Fees Per Task), person (Hours Per Person), none (No Budget).
budget: Option<f64>The budget in hours or money for the project when budgeting by time. If the project is budgeted by money, this value will only be visible to Administrators and Project Managers with the View billable rates and amounts permission.
project_name: Option<String>The name of the project.
budget_is_monthly: Option<bool>Whether the budget is reset every month.
budget_remaining: Option<f64>The total hours or money remaining in the project’s budget. If Time Rounding is turned on, the hours will be rounded according to your settings. If the project is budgeted by money, this value will only be visible to Administrators and Project Managers with the View billable rates and amounts permission.
is_active: Option<bool>Whether the project is active or archived.
client_name: Option<String>The name of the client associated with this project.
project_id: Option<i64>The ID of the project.