Skip to content

Commit

Permalink
Make ID in article schema required again
Browse files Browse the repository at this point in the history
  • Loading branch information
0xRy4n committed Sep 20, 2023
1 parent 802c0f4 commit a234b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intercom_python_sdk/apis/articles/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ArticleSchema(SchemaBase):
default_locale (str): The default locale of the Article.
statistics (dict): The statistics of the Article.
"""
id = fields.Int(required=False)
id = fields.Int(allow_none=True, required=True)
type = fields.Str(allow_none=True, required=False)
workspace_id = fields.Str(allow_none=True, required=False)
title = fields.Str(required=True)
Expand Down

0 comments on commit a234b16

Please sign in to comment.