Rest API - HATEOAS and Linking
What will be the output of this pseudo-code when following hypermedia links?
response = {"links": {"self": "/orders/1", "cancel": "/orders/1/cancel"}}
print(response["links"]["cancel"])