The ProjectCard struct is currently still missing 4 attributes, which are returned from the Events API:
| Name |
Type |
Description |
project_card["project_id"] |
string |
The identification number of the project. |
project_card["project_url"] |
string |
The API URL of the project. |
project_card["column_name"] |
string |
The name of the column that the card is listed in. |
project_card["previous_column_name"] |
string |
The name of the column that the card was listed in prior to column_name. Only returned for moved_columns_in_project events. |
Note: after testing it I see that project_id is actually an integer and not a string, as stated in the documentation.
Related issue: #667
The
ProjectCardstruct is currently still missing 4 attributes, which are returned from the Events API:project_card["project_id"]stringproject_card["project_url"]stringproject_card["column_name"]stringproject_card["previous_column_name"]stringcolumn_name. Only returned formoved_columns_in_projectevents.Note: after testing it I see that
project_idis actually an integer and not a string, as stated in the documentation.Related issue: #667