Skip to content

Commit 1e3eec1

Browse files
author
devexperience
committed
Generated version 0.9.1
This pull request was automatically generated by a GitHub Action to generate version 0.9.1 of this library.
1 parent b6ec762 commit 1e3eec1

File tree

7 files changed

+10
-5
lines changed

7 files changed

+10
-5
lines changed

docs/InstitutionResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**code** | **str, none_type** | | [optional]
8+
**instructional_text** | **str, none_type** | | [optional]
89
**medium_logo_url** | **str, none_type** | | [optional]
910
**name** | **str, none_type** | | [optional]
1011
**small_logo_url** | **str, none_type** | | [optional]

mx_platform_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212

13-
__version__ = "0.9.0"
13+
__version__ = "0.9.1"
1414

1515
# import ApiClient
1616
from mx_platform_python.api_client import ApiClient

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.9.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.9.1/python'
8080

8181
def __enter__(self):
8282
return self

mx_platform_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def to_debug_report(self):
404404
"OS: {env}\n"\
405405
"Python Version: {pyversion}\n"\
406406
"Version of the API: 0.1.0\n"\
407-
"SDK Package Version: 0.9.0".\
407+
"SDK Package Version: 0.9.1".\
408408
format(env=sys.platform, pyversion=sys.version)
409409

410410
def get_host_settings(self):

mx_platform_python/model/institution_response.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def openapi_types():
8282
"""
8383
return {
8484
'code': (str, none_type,), # noqa: E501
85+
'instructional_text': (str, none_type,), # noqa: E501
8586
'medium_logo_url': (str, none_type,), # noqa: E501
8687
'name': (str, none_type,), # noqa: E501
8788
'small_logo_url': (str, none_type,), # noqa: E501
@@ -100,6 +101,7 @@ def discriminator():
100101

101102
attribute_map = {
102103
'code': 'code', # noqa: E501
104+
'instructional_text': 'instructional_text', # noqa: E501
103105
'medium_logo_url': 'medium_logo_url', # noqa: E501
104106
'name': 'name', # noqa: E501
105107
'small_logo_url': 'small_logo_url', # noqa: E501
@@ -153,6 +155,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
153155
through its discriminator because we passed in
154156
_visited_composed_classes = (Animal,)
155157
code (str, none_type): [optional] # noqa: E501
158+
instructional_text (str, none_type): [optional] # noqa: E501
156159
medium_logo_url (str, none_type): [optional] # noqa: E501
157160
name (str, none_type): [optional] # noqa: E501
158161
small_logo_url (str, none_type): [optional] # noqa: E501
@@ -244,6 +247,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
244247
through its discriminator because we passed in
245248
_visited_composed_classes = (Animal,)
246249
code (str, none_type): [optional] # noqa: E501
250+
instructional_text (str, none_type): [optional] # noqa: E501
247251
medium_logo_url (str, none_type): [optional] # noqa: E501
248252
name (str, none_type): [optional] # noqa: E501
249253
small_logo_url (str, none_type): [optional] # noqa: E501

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.9.0
4+
packageVersion: 0.9.1
55
projectName: mx-platform-python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from setuptools import setup, find_packages # noqa: H301
1212

1313
NAME = "mx-platform-python"
14-
VERSION = "0.9.0"
14+
VERSION = "0.9.1"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)