Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

AttackObjectivesAndTimeline

Properties

Name Type Description Notes
timeline_segments List[AttackTimelineSegment] [optional]
links List[APILink] [optional]

Example

from cyperf.models.attack_objectives_and_timeline import AttackObjectivesAndTimeline

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

# convert the object into a dict
attack_objectives_and_timeline_dict = attack_objectives_and_timeline_instance.to_dict()
# create an instance of AttackObjectivesAndTimeline from a dict
attack_objectives_and_timeline_from_dict = AttackObjectivesAndTimeline.from_dict(attack_objectives_and_timeline_dict)

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