Skip to content

Commit 7aa83a9

Browse files
author
devexperience
committed
Generated version 0.29.0
This commit was automatically created by a GitHub Action to generate version 0.29.0 of this library.
1 parent c9d2ee0 commit 7aa83a9

File tree

11 files changed

+18
-7
lines changed

11 files changed

+18
-7
lines changed

docs/AccountResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Name | Type | Description | Notes
5656
**today_ugl_amount** | **float** | | [optional]
5757
**today_ugl_percentage** | **float** | | [optional]
5858
**total_account_value** | **float** | | [optional]
59+
**total_account_value_ugl** | **float** | | [optional]
5960
**type** | **str** | | [optional]
6061
**updated_at** | **str** | | [optional]
6162
**user_guid** | **str** | | [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.28.0"
17+
__version__ = "0.29.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.28.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.29.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.28.0".\
395+
"SDK Package Version: 0.29.0".\
396396
format(env=sys.platform, pyversion=sys.version)
397397

398398
def get_host_settings(self):

mx_platform_python/models/account_response.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,12 @@ class AccountResponse(BaseModel):
7777
today_ugl_amount: Optional[Union[StrictFloat, StrictInt]] = None
7878
today_ugl_percentage: Optional[Union[StrictFloat, StrictInt]] = None
7979
total_account_value: Optional[Union[StrictFloat, StrictInt]] = None
80+
total_account_value_ugl: Optional[Union[StrictFloat, StrictInt]] = None
8081
type: Optional[StrictStr] = None
8182
updated_at: Optional[StrictStr] = None
8283
user_guid: Optional[StrictStr] = None
8384
user_id: Optional[StrictStr] = None
84-
__properties = ["account_number", "account_ownership", "annuity_policy_to_date", "annuity_provider", "annuity_term_year", "apr", "apy", "available_balance", "available_credit", "balance", "cash_balance", "cash_surrender_value", "created_at", "credit_limit", "currency_code", "day_payment_is_due", "death_benefit", "guid", "holdings_value", "id", "imported_at", "institution_code", "insured_name", "interest_rate", "is_closed", "is_hidden", "is_manual", "last_payment", "last_payment_at", "loan_amount", "margin_balance", "matures_on", "member_guid", "member_id", "member_is_managed_by_user", "metadata", "minimum_balance", "minimum_payment", "name", "nickname", "original_balance", "pay_out_amount", "payment_due_at", "payoff_balance", "premium_amount", "property_type", "routing_number", "started_on", "subtype", "today_ugl_amount", "today_ugl_percentage", "total_account_value", "type", "updated_at", "user_guid", "user_id"]
85+
__properties = ["account_number", "account_ownership", "annuity_policy_to_date", "annuity_provider", "annuity_term_year", "apr", "apy", "available_balance", "available_credit", "balance", "cash_balance", "cash_surrender_value", "created_at", "credit_limit", "currency_code", "day_payment_is_due", "death_benefit", "guid", "holdings_value", "id", "imported_at", "institution_code", "insured_name", "interest_rate", "is_closed", "is_hidden", "is_manual", "last_payment", "last_payment_at", "loan_amount", "margin_balance", "matures_on", "member_guid", "member_id", "member_is_managed_by_user", "metadata", "minimum_balance", "minimum_payment", "name", "nickname", "original_balance", "pay_out_amount", "payment_due_at", "payoff_balance", "premium_amount", "property_type", "routing_number", "started_on", "subtype", "today_ugl_amount", "today_ugl_percentage", "total_account_value", "total_account_value_ugl", "type", "updated_at", "user_guid", "user_id"]
8586

8687
class Config:
8788
"""Pydantic configuration"""
@@ -362,6 +363,11 @@ def to_dict(self):
362363
if self.total_account_value is None and "total_account_value" in self.__fields_set__:
363364
_dict['total_account_value'] = None
364365

366+
# set to None if total_account_value_ugl (nullable) is None
367+
# and __fields_set__ contains the field
368+
if self.total_account_value_ugl is None and "total_account_value_ugl" in self.__fields_set__:
369+
_dict['total_account_value_ugl'] = None
370+
365371
# set to None if type (nullable) is None
366372
# and __fields_set__ contains the field
367373
if self.type is None and "type" in self.__fields_set__:
@@ -446,6 +452,7 @@ def from_dict(cls, obj: dict) -> AccountResponse:
446452
"today_ugl_amount": obj.get("today_ugl_amount"),
447453
"today_ugl_percentage": obj.get("today_ugl_percentage"),
448454
"total_account_value": obj.get("total_account_value"),
455+
"total_account_value_ugl": obj.get("total_account_value_ugl"),
449456
"type": obj.get("type"),
450457
"updated_at": obj.get("updated_at"),
451458
"user_guid": obj.get("user_guid"),

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.28.0
4+
packageVersion: 0.29.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.28.0"
3+
version = "0.29.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.28.0"
24+
VERSION = "0.29.0"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

test/test_account_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def make_instance(self, include_optional) -> AccountResponse:
8888
today_ugl_amount = 1000.5,
8989
today_ugl_percentage = 6.9,
9090
total_account_value = 1.0,
91+
total_account_value_ugl = 1.1,
9192
type = 'SAVINGS',
9293
updated_at = '2016-10-13T18:08:00.000Z',
9394
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54',

test/test_account_response_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def make_instance(self, include_optional) -> AccountResponseBody:
8989
today_ugl_amount = 1000.5,
9090
today_ugl_percentage = 6.9,
9191
total_account_value = 1.0,
92+
total_account_value_ugl = 1.1,
9293
type = 'SAVINGS',
9394
updated_at = '2016-10-13T18:08:00.000Z',
9495
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54',

0 commit comments

Comments
 (0)