QR Code
| Name | Type | Description | Notes |
|---|---|---|---|
| size | int | The size of the QR code (px) | [optional] [default to 600] |
| format | str | The format of the QR code | [optional] [default to 'png'] |
| margin | int | The margin around the QR code (px) | [optional] [default to 0] |
| background_color | str | The background color of the QR code (hexadecimal) | [optional] [default to '#ffffff'] |
| foreground_color | str | The foreground color of the QR code (hexadecimal) | [optional] [default to '#000000'] |
from urlr.models.link_base_request_qrcode import LinkBaseRequestQrcode
# TODO update the JSON string below
json = "{}"
# create an instance of LinkBaseRequestQrcode from a JSON string
link_base_request_qrcode_instance = LinkBaseRequestQrcode.from_json(json)
# print the JSON string representation of the object
print(LinkBaseRequestQrcode.to_json())
# convert the object into a dict
link_base_request_qrcode_dict = link_base_request_qrcode_instance.to_dict()
# create an instance of LinkBaseRequestQrcode from a dict
link_base_request_qrcode_from_dict = LinkBaseRequestQrcode.from_dict(link_base_request_qrcode_dict)