Skip to content

Commit 0a23f44

Browse files
authored
Merge pull request #101 from cloudblue/asset_constrain_reconciliation
Added reconiciliation flag to match asset model
2 parents 107c035 + f3f4dd5 commit 0a23f44

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

connect/models/constraints.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ class Constraints(BaseModel):
2626

2727
unique = None # type: bool
2828
""" (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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ class ConstraintsSchema(BaseSchema):
128128
required = fields.Bool()
129129
choices = fields.Nested(ValueChoiceSchema, many=True)
130130
unique = fields.Bool()
131+
reconciliation = fields.Bool()
131132

132133
@post_load
133134
def make_object(self, data):

0 commit comments

Comments
 (0)