Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.51 KB

ObjectivesAndTimeline.md

File metadata and controls

34 lines (25 loc) · 1.51 KB

ObjectivesAndTimeline

Properties

Name Type Description Notes
advanced_settings AdvancedSettings [optional]
primary_objective SpecificObjective [optional]
secondary_objective SecondaryObjective [optional]
secondary_objectives List[SpecificObjective] Deprecated. Use SecondaryObjective instead. [optional]
timeline_segments List[TimelineSegment] Deprecated. Use PrimaryObjective.Timeline instead. [optional]
links List[APILink] [optional]

Example

from cyperf.models.objectives_and_timeline import ObjectivesAndTimeline

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

# convert the object into a dict
objectives_and_timeline_dict = objectives_and_timeline_instance.to_dict()
# create an instance of ObjectivesAndTimeline from a dict
objectives_and_timeline_from_dict = ObjectivesAndTimeline.from_dict(objectives_and_timeline_dict)

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