Skip to content

Commit 1baa490

Browse files
committed
Add institution_id and institution_name as optional fields on PayrollItem
1 parent e1bd2c5 commit 1baa490

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

plaid/model/payroll_item.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ def openapi_types():
8484
'payroll_income': ([PayrollIncomeObject],), # noqa: E501
8585
'status': (PayrollItemStatus,), # noqa: E501
8686
'updated_at': (datetime, none_type,), # noqa: E501
87+
'institution_id': (str, none_type), # noqa: E501
88+
'institution_name': (str, none_type), # noqa: E501
8789
}
8890

8991
@cached_property
@@ -97,6 +99,8 @@ def discriminator():
9799
'payroll_income': 'payroll_income', # noqa: E501
98100
'status': 'status', # noqa: E501
99101
'updated_at': 'updated_at', # noqa: E501
102+
'institution_id': 'institution_id', # noqa: E501
103+
'institution_name': 'institution_name', # noqa: E501
100104
}
101105

102106
_composed_schemas = {}

0 commit comments

Comments
 (0)