Skip to content

Commit b81c606

Browse files
author
devexperience
committed
Generated version 0.31.0
This commit was automatically created by a GitHub Action to generate version 0.31.0 of this library.
1 parent 0579848 commit b81c606

File tree

10 files changed

+17
-7
lines changed

10 files changed

+17
-7
lines changed

docs/AccountNumberResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
**account_guid** | **str** | | [optional]
88
**account_number** | **str** | | [optional]
99
**guid** | **str** | | [optional]
10+
**loan_guarantor** | **str** | | [optional]
1011
**institution_number** | **str** | | [optional]
1112
**member_guid** | **str** | | [optional]
1213
**passed_validation** | **bool** | | [optional]

mx_platform_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "0.30.0"
17+
__version__ = "0.31.0"
1818

1919
# import apis into sdk package
2020
from mx_platform_python.api.insights_api import InsightsApi

mx_platform_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7676
self.default_headers[header_name] = header_value
7777
self.cookie = cookie
7878
# Set default User-Agent.
79-
self.user_agent = 'OpenAPI-Generator/0.30.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.31.0/python'
8080
self.client_side_validation = configuration.client_side_validation
8181

8282
def __enter__(self):

mx_platform_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def to_debug_report(self):
392392
"OS: {env}\n"\
393393
"Python Version: {pyversion}\n"\
394394
"Version of the API: 0.1.0\n"\
395-
"SDK Package Version: 0.30.0".\
395+
"SDK Package Version: 0.31.0".\
396396
format(env=sys.platform, pyversion=sys.version)
397397

398398
def get_host_settings(self):

mx_platform_python/models/account_number_response.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,14 @@ class AccountNumberResponse(BaseModel):
2828
account_guid: Optional[StrictStr] = None
2929
account_number: Optional[StrictStr] = None
3030
guid: Optional[StrictStr] = None
31+
loan_guarantor: Optional[StrictStr] = None
3132
institution_number: Optional[StrictStr] = None
3233
member_guid: Optional[StrictStr] = None
3334
passed_validation: Optional[StrictBool] = None
3435
routing_number: Optional[StrictStr] = None
3536
transit_number: Optional[StrictStr] = None
3637
user_guid: Optional[StrictStr] = None
37-
__properties = ["account_guid", "account_number", "guid", "institution_number", "member_guid", "passed_validation", "routing_number", "transit_number", "user_guid"]
38+
__properties = ["account_guid", "account_number", "guid", "loan_guarantor", "institution_number", "member_guid", "passed_validation", "routing_number", "transit_number", "user_guid"]
3839

3940
class Config:
4041
"""Pydantic configuration"""
@@ -75,6 +76,11 @@ def to_dict(self):
7576
if self.guid is None and "guid" in self.__fields_set__:
7677
_dict['guid'] = None
7778

79+
# set to None if loan_guarantor (nullable) is None
80+
# and __fields_set__ contains the field
81+
if self.loan_guarantor is None and "loan_guarantor" in self.__fields_set__:
82+
_dict['loan_guarantor'] = None
83+
7884
# set to None if institution_number (nullable) is None
7985
# and __fields_set__ contains the field
8086
if self.institution_number is None and "institution_number" in self.__fields_set__:
@@ -120,6 +126,7 @@ def from_dict(cls, obj: dict) -> AccountNumberResponse:
120126
"account_guid": obj.get("account_guid"),
121127
"account_number": obj.get("account_number"),
122128
"guid": obj.get("guid"),
129+
"loan_guarantor": obj.get("loan_guarantor"),
123130
"institution_number": obj.get("institution_number"),
124131
"member_guid": obj.get("member_guid"),
125132
"passed_validation": obj.get("passed_validation"),

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
packageName: mx_platform_python
33
packageUrl: https://pypi.org/project/mx-platform-python
4-
packageVersion: 0.30.0
4+
packageVersion: 0.31.0
55
projectName: mx-platform-python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mx_platform_python"
3-
version = "0.30.0"
3+
version = "0.31.0"
44
description = "MX Platform API"
55
authors = ["MX Platform API <[email protected]>"]
66
license = "NoLicense"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "mx-platform-python"
24-
VERSION = "0.30.0"
24+
VERSION = "0.31.0"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

test/test_account_number_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def make_instance(self, include_optional) -> AccountNumberResponse:
3939
account_guid = 'ACT-06d7f45b-caae-0f6e-1384-01f52e75dcb1',
4040
account_number = '10001',
4141
guid = 'ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f',
42+
loan_guarantor = 'U.S. DEPARTMENT OF EDUCATION',
4243
institution_number = '123',
4344
member_guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b',
4445
passed_validation = True,

test/test_account_numbers_response_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def make_instance(self, include_optional) -> AccountNumbersResponseBody:
4141
account_guid = 'ACT-06d7f45b-caae-0f6e-1384-01f52e75dcb1',
4242
account_number = '10001',
4343
guid = 'ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f',
44+
loan_guarantor = 'U.S. DEPARTMENT OF EDUCATION',
4445
institution_number = '123',
4546
member_guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b',
4647
passed_validation = True,

0 commit comments

Comments
 (0)