Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

StepByStepInstructions

Properties

Name Type Description Notes
steps List[str] Step-by-step instructions
html_example str HTML example of the implementation

Example

from rankvectors.models.step_by_step_instructions import StepByStepInstructions

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

# convert the object into a dict
step_by_step_instructions_dict = step_by_step_instructions_instance.to_dict()
# create an instance of StepByStepInstructions from a dict
step_by_step_instructions_from_dict = StepByStepInstructions.from_dict(step_by_step_instructions_dict)

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