Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

QrcodeCreateRequestOneOf1

Properties

Name Type Description Notes
link_id UUID Link API ID of the QR Code

Example

from urlr.models.qrcode_create_request_one_of1 import QrcodeCreateRequestOneOf1

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

# convert the object into a dict
qrcode_create_request_one_of1_dict = qrcode_create_request_one_of1_instance.to_dict()
# create an instance of QrcodeCreateRequestOneOf1 from a dict
qrcode_create_request_one_of1_from_dict = QrcodeCreateRequestOneOf1.from_dict(qrcode_create_request_one_of1_dict)

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