We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 802c0f4 commit a234b16Copy full SHA for a234b16
intercom_python_sdk/apis/articles/schemas.py
@@ -64,7 +64,7 @@ class ArticleSchema(SchemaBase):
64
default_locale (str): The default locale of the Article.
65
statistics (dict): The statistics of the Article.
66
"""
67
- id = fields.Int(required=False)
+ id = fields.Int(allow_none=True, required=True)
68
type = fields.Str(allow_none=True, required=False)
69
workspace_id = fields.Str(allow_none=True, required=False)
70
title = fields.Str(required=True)
0 commit comments