pub async fn get_tasks_for_user_task_list(
    configuration: &Configuration,
    user_task_list_gid: &str,
    completed_since: Option<&str>,
    opt_pretty: Option<bool>,
    opt_fields: Option<Vec<String>>,
    limit: Option<i32>,
    offset: Option<&str>
) -> Result<InlineResponse20023, Error<GetTasksForUserTaskListError>>
Expand description

Returns the compact list of tasks in a user’s My Tasks list. Note: Access control is enforced for this endpoint as with all Asana API endpoints, meaning a user’s private tasks will be filtered out if the API-authenticated user does not have access to them. Note: Both complete and incomplete tasks are returned by default unless they are filtered out (for example, setting completed_since=now will return only incomplete tasks, which is the default view for “My Tasks” in Asana.)