Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

GenerateQRCodeRequest

Properties

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']

Example

from pdf_generator_api_client.models.generate_qr_code_request import GenerateQRCodeRequest

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

# convert the object into a dict
generate_qr_code_request_dict = generate_qr_code_request_instance.to_dict()
# create an instance of GenerateQRCodeRequest from a dict
generate_qr_code_request_from_dict = GenerateQRCodeRequest.from_dict(generate_qr_code_request_dict)

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