Skip to content

Commit 12adfbc

Browse files
No release notes for this build
1 parent 54942ad commit 12adfbc

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

docs/ETFHistoricalStats.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,14 @@
1212

1313
Name | Type | Description
1414
------------ | ------------- | -------------
15-
**messages** | [**list[ERRORUNKNOWN]**](.md) | A list of messages related to the request, such as warnings or errors.  
15+
**messages** | list[str] | A list of messages related to the request, such as warnings or errors.  
1616
**etf** | [**ETFSummary**](ETFSummary.md) | A brief summary of the ETF it which these stats refer. Not included when returning historical stats.  
1717
**stats** | [**list[ETFStats]**](ETFStats.md) | The historical stats for the ETF  
1818
**next_page** | str | The token required to request the next page of the data. If null, no further results are available.  
1919

2020
[//]: # (END_DEFINITION)
2121

2222

23-
[//]: # (CONTAINED_CLASS:)
24-
25-
2623
[//]: # (CONTAINED_CLASS:ETFSummary)
2724

2825

intrinio_sdk/models/etf_historical_stats.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class ETFHistoricalStats(object):
3434
and the value is json key in definition.
3535
"""
3636
swagger_types = {
37-
'messages': 'list[ERRORUNKNOWN]',
37+
'messages': 'list[str]',
3838
'etf': 'ETFSummary',
3939
'stats': 'list[ETFStats]',
4040
'next_page': 'str'
@@ -72,7 +72,7 @@ def messages(self):
7272
A list of messages related to the request, such as warnings or errors. # noqa: E501
7373
7474
:return: The messages of this ETFHistoricalStats. # noqa: E501
75-
:rtype: list[ERRORUNKNOWN]
75+
:rtype: list[str]
7676
"""
7777
return self._messages
7878

@@ -83,7 +83,7 @@ def messages_dict(self):
8383
A list of messages related to the request, such as warnings or errors. as a dictionary. Useful for Panda Dataframes. # noqa: E501
8484
8585
:return: The messages of this ETFHistoricalStats. # noqa: E501
86-
:rtype: list[ERRORUNKNOWN]
86+
:rtype: list[str]
8787
"""
8888

8989
result = None
@@ -116,7 +116,7 @@ def messages(self, messages):
116116
A list of messages related to the request, such as warnings or errors. # noqa: E501
117117
118118
:param messages: The messages of this ETFHistoricalStats. # noqa: E501
119-
:type: list[ERRORUNKNOWN]
119+
:type: list[str]
120120
"""
121121

122122
self._messages = messages

0 commit comments

Comments
 (0)