We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a3d89d commit 6926c74Copy full SHA for 6926c74
src/citrine/resources/project.py
@@ -77,6 +77,8 @@ class Project(Resource['Project']):
77
"""str: Status of the project."""
78
created_at = properties.Optional(properties.Datetime(), 'created_at')
79
"""int: Time the project was created, in seconds since epoch."""
80
+ archived = properties.Optional(properties.Boolean, 'archived')
81
+ """bool: Whether the project is archived."""
82
_team_id = properties.Optional(properties.UUID, "team.id", serializable=False)
83
84
def __init__(self,
0 commit comments