Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 867 Bytes

WhenSpec.md

File metadata and controls

29 lines (21 loc) · 867 Bytes

WhenSpec

Properties

Name Type Description Notes
activate datetime
deactivate datetime [optional]

Example

from finbourne_access.models.when_spec import WhenSpec

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

# convert the object into a dict
when_spec_dict = when_spec_instance.to_dict()
# create an instance of WhenSpec from a dict
when_spec_form_dict = when_spec.from_dict(when_spec_dict)

Back to Model listBack to API listBack to README