| Name | Type | Description | Notes |
|---|
| content | str | The content which is used to generate QR code | |
| color | str | QR code in hexadecimal format | [optional] [default to '#000000'] |
| logo_base64 | str | A logo as a base64 image string to add on the QR code | [optional] |
| logo_url | str | A logo URL to an image to add on the QR code | [optional] |
| output | str | Response format | [optional] [default to 'base64'] |
frompdf_generator_api_client.models.generate_qr_code_requestimportGenerateQRCodeRequest# TODO update the JSON string belowjson="{}"# create an instance of GenerateQRCodeRequest from a JSON stringgenerate_qr_code_request_instance=GenerateQRCodeRequest.from_json(json)
# print the JSON string representation of the objectprint(GenerateQRCodeRequest.to_json())
# convert the object into a dictgenerate_qr_code_request_dict=generate_qr_code_request_instance.to_dict()
# create an instance of GenerateQRCodeRequest from a dictgenerate_qr_code_request_from_dict=GenerateQRCodeRequest.from_dict(generate_qr_code_request_dict)[Back to Model list][Back to API list][Back to README]