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 107c035 + f3f4dd5 commit 0a23f44Copy full SHA for 0a23f44
connect/models/constraints.py
@@ -26,3 +26,6 @@ class Constraints(BaseModel):
26
27
unique = None # type: bool
28
""" (bool) Is the constraint unique? """
29
+
30
+ reconciliation = None # type: bool
31
+ """ (bool) True if vendor has marked parameters as for reconciliation purposes """
connect/models/schemas.py
@@ -128,6 +128,7 @@ class ConstraintsSchema(BaseSchema):
128
required = fields.Bool()
129
choices = fields.Nested(ValueChoiceSchema, many=True)
130
unique = fields.Bool()
131
+ reconciliation = fields.Bool()
132
133
@post_load
134
def make_object(self, data):
0 commit comments