| Name |
Type |
Description |
Notes |
| steps |
List[str] |
Step-by-step instructions |
|
| html_example |
str |
HTML example of the implementation |
|
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]