Skip to content

Commit a234b16

Browse files
committed
Make ID in article schema required again
1 parent 802c0f4 commit a234b16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intercom_python_sdk/apis/articles/schemas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class ArticleSchema(SchemaBase):
6464
default_locale (str): The default locale of the Article.
6565
statistics (dict): The statistics of the Article.
6666
"""
67-
id = fields.Int(required=False)
67+
id = fields.Int(allow_none=True, required=True)
6868
type = fields.Str(allow_none=True, required=False)
6969
workspace_id = fields.Str(allow_none=True, required=False)
7070
title = fields.Str(required=True)

0 commit comments

Comments
 (0)