Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.36 KB

DisplayInfoFormatValue.md

File metadata and controls

37 lines (28 loc) · 1.36 KB

DisplayInfoFormatValue

Properties

Name Type Description Notes
numtype str [optional]
currency_symbol str Currency Symbol [optional]
is_percentage bool Is Percentage
decimal_spec int [optional]
scientific bool Scientific
numeric_precision int [optional]
date_format str [optional]
time_zone str [optional]
postgres_date_format str [optional]

Example

from openapi_client.models.display_info_format_value import DisplayInfoFormatValue

# TODO update the JSON string below
json = "{}"
# create an instance of DisplayInfoFormatValue from a JSON string
display_info_format_value_instance = DisplayInfoFormatValue.from_json(json)
# print the JSON string representation of the object
print(DisplayInfoFormatValue.to_json())

# convert the object into a dict
display_info_format_value_dict = display_info_format_value_instance.to_dict()
# create an instance of DisplayInfoFormatValue from a dict
display_info_format_value_from_dict = DisplayInfoFormatValue.from_dict(display_info_format_value_dict)

[Back to Model list] [Back to API list] [Back to README]