Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnyder-intrinio committed Aug 23, 2024
1 parent 6900cec commit f79be10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/ApiResponseSecurityQuote.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Name | Type | Description
**marketcap** | float | The current market cap.  
**pricetoearnings** | float | The current price to earnings.  
**previous_close** | float | The previous close price.  
**previous_close_date** | float | The date of the previous close.  
**previous_close_date** | date | The date of the previous close.  
**change** | float | The difference in last price from the last close price  
**change_percent** | float | The percent difference in last price from the last close price  
**adj_close_5_days_ago** | float | The adjusted close price 5 days ago.  
Expand Down
8 changes: 4 additions & 4 deletions intrinio_sdk/models/api_response_security_quote.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ApiResponseSecurityQuote(object):
'marketcap': 'float',
'pricetoearnings': 'float',
'previous_close': 'float',
'previous_close_date': 'float',
'previous_close_date': 'date',
'change': 'float',
'change_percent': 'float',
'adj_close_5_days_ago': 'float',
Expand Down Expand Up @@ -970,7 +970,7 @@ def previous_close_date(self):
The date of the previous close. # noqa: E501
:return: The previous_close_date of this ApiResponseSecurityQuote. # noqa: E501
:rtype: float
:rtype: date
"""
return self._previous_close_date

Expand All @@ -981,7 +981,7 @@ def previous_close_date_dict(self):
The date of the previous close. as a dictionary. Useful for Panda Dataframes. # noqa: E501
:return: The previous_close_date of this ApiResponseSecurityQuote. # noqa: E501
:rtype: float
:rtype: date
"""

result = None
Expand Down Expand Up @@ -1014,7 +1014,7 @@ def previous_close_date(self, previous_close_date):
The date of the previous close. # noqa: E501
:param previous_close_date: The previous_close_date of this ApiResponseSecurityQuote. # noqa: E501
:type: float
:type: date
"""

self._previous_close_date = previous_close_date
Expand Down

0 comments on commit f79be10

Please sign in to comment.