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.
2 parents 3468b52 + 689701a commit 36ba5a2Copy full SHA for 36ba5a2
connect/models/product.py
@@ -140,3 +140,8 @@ class Item(BaseModel):
140
141
global_id = None # type: str
142
""" (str) Global id. """
143
+
144
+ # Undocumented fields (they appear in PHP SDK)
145
146
+ period = None # type: str
147
+ """ (str) Period. """
connect/models/schemas.py
@@ -240,6 +240,7 @@ class ItemSchema(BaseSchema):
240
old_quantity = QuantityField(allow_none=True)
241
renewal = fields.Nested(RenewalSchema, allow_none=True)
242
global_id = fields.Str()
243
+ period = fields.Str()
244
245
@post_load
246
def make_object(self, data):
0 commit comments