Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.22 KB

EffectiveDateRelative.md

File metadata and controls

31 lines (23 loc) · 1.22 KB

EffectiveDateRelative

Properties

Name Type Description Notes
var_date PointInTimeSpecification [optional]
adjustment int [optional]
unit DateUnit [optional]
relative_to_date_time RelativeToDateTime [optional]

Example

from finbourne_access.models.effective_date_relative import EffectiveDateRelative

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

# convert the object into a dict
effective_date_relative_dict = effective_date_relative_instance.to_dict()
# create an instance of EffectiveDateRelative from a dict
effective_date_relative_form_dict = effective_date_relative.from_dict(effective_date_relative_dict)

Back to Model listBack to API listBack to README