pub struct Worklog {Show 13 fields
pub param_self: Option<String>,
pub author: Option<Box<UserDetails>>,
pub update_author: Option<Box<UserDetails>>,
pub comment: Option<String>,
pub created: Option<String>,
pub updated: Option<String>,
pub visibility: Option<Visibility>,
pub started: Option<String>,
pub time_spent: Option<String>,
pub time_spent_seconds: Option<i64>,
pub id: Option<String>,
pub issue_id: Option<String>,
pub properties: Option<Vec<EntityProperty>>,
}
Expand description
Worklog : Details of a worklog.
Fields§
§param_self: Option<String>
The URL of the worklog item.
Details of the user who created the worklog.
Details of the user who last updated the worklog.
comment: Option<String>
A comment about the worklog. Optional when creating or updating a worklog.
created: Option<String>
The datetime on which the worklog was created.
updated: Option<String>
The datetime on which the worklog was last updated.
visibility: Option<Visibility>
Details about any restrictions in the visibility of the worklog. Optional when creating or updating a worklog.
started: Option<String>
The datetime on which the worklog effort was started. Required when creating a worklog. Optional when updating a worklog.
time_spent: Option<String>
The time spent working on the issue as days (\#d), hours (\#h), or minutes (\#m or \#). Required when creating a worklog if timeSpentSeconds
isn’t provided. Optional when updating a worklog. Cannot be provided if timeSpentSecond
is provided.
time_spent_seconds: Option<i64>
The time in seconds spent working on the issue. Required when creating a worklog if timeSpent
isn’t provided. Optional when updating a worklog. Cannot be provided if timeSpent
is provided.
id: Option<String>
The ID of the worklog record.
issue_id: Option<String>
The ID of the issue this worklog is for.
properties: Option<Vec<EntityProperty>>
Details of properties for the worklog. Optional when creating or updating a worklog.