Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 880 Bytes

File metadata and controls

30 lines (21 loc) · 880 Bytes

LinkQrcode

QR Code associated to the short link

Properties

Name Type Description Notes
data str QR Code Data URL [optional]

Example

from urlr.models.link_qrcode import LinkQrcode

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

# convert the object into a dict
link_qrcode_dict = link_qrcode_instance.to_dict()
# create an instance of LinkQrcode from a dict
link_qrcode_from_dict = LinkQrcode.from_dict(link_qrcode_dict)

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