Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

QrcodeCreateRequestOneOf

Properties

Name Type Description Notes
url str URL of the QR Code
workspace_id UUID Workspace API ID

Example

from urlr.models.qrcode_create_request_one_of import QrcodeCreateRequestOneOf

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

# convert the object into a dict
qrcode_create_request_one_of_dict = qrcode_create_request_one_of_instance.to_dict()
# create an instance of QrcodeCreateRequestOneOf from a dict
qrcode_create_request_one_of_from_dict = QrcodeCreateRequestOneOf.from_dict(qrcode_create_request_one_of_dict)

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