In Google Tasks android app and in the web version, I have the possibility to mark a task as favorite (click that star).
Yet in the API there is no task attribute to use to get that boolean value.
Link to the Task API: https://developers.google.com/resources/api-libraries/documentation/tasks/v1/java/latest/com/google/api/services/tasks/model/Task.html
Here is how the favorite mark looks like
The version I am using is "v1-rev20210709-2.0.0":
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-tasks</artifactId>
<version>v1-rev20210709-2.0.0</version>
</dependency>
I have created a small java app that is getting all the tasks using Google Tasks API and generate a html 3 column printable format. I would bold that task when marked as favorite...
Can anybody help me read that favorite mark using Google Task API ?