Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.33 KB

File metadata and controls

34 lines (25 loc) · 1.33 KB

ImplementationInstructions

Properties

Name Type Description Notes
suggestion_id str Suggestion identifier
page_url str URL of the page to modify
anchor_text str Text to turn into a link
target_url str URL to link to
context str Context where the link should be placed
instructions StepByStepInstructions

Example

from rankvectors.models.implementation_instructions import ImplementationInstructions

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

# convert the object into a dict
implementation_instructions_dict = implementation_instructions_instance.to_dict()
# create an instance of ImplementationInstructions from a dict
implementation_instructions_from_dict = ImplementationInstructions.from_dict(implementation_instructions_dict)

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