Skip to content

Commit 4ec59ec

Browse files
Marc SerratMarc Serrat
authored andcommitted
Added reconciliation to schema too
1 parent 92ebc8c commit 4ec59ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

connect/models/param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ class Param(BaseModel):
5757
marketplace = None # type: Optional[Marketplace]
5858
""" (:py:class:`.Marketplace` | None) Marketplace. """
5959

60-
reconciliation = None # type: Optional[bool]
60+
reconciliation = None # type: Optional[bool]
6161
""" (bool|None) Is Parameter used as reconciliation one from vendor invoices """

connect/models/schemas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,12 +314,12 @@ class ParamSchema(BaseSchema):
314314
value_error = fields.Str()
315315
value_choice = fields.Str(many=True)
316316

317-
# Undocumented fields (they appear in PHP SDK)
318317
title = fields.Str()
319318
scope = fields.Str()
320319
constraints = fields.Nested(ConstraintsSchema)
321320
value_choices = fields.Nested(ValueChoiceSchema, many=True)
322321
phase = fields.Str()
322+
reconciliation = fields.Bool()
323323
events = fields.Nested(EventsSchema)
324324
marketplace = fields.Nested(MarketplaceSchema)
325325
countries = fields.Nested(CountrySchema, many=True)

0 commit comments

Comments
 (0)