QrCodeSearchOptions constructor

init

Initializes a new instance of the QRCodeSearchOptions class with default values.

def __init__(self):
    ...

init

Initializes a new instance of the QRCodeSearchOptions class with encode type value.

def __init__(self, encode_type):
    ...
Parameter Type Description
encode_type groupdocs.signature.domain.QrCodeType Specifies QR-Code encode type.

init

Initializes a new instance of the QRCodeSearchOptions class with encode type and text values.

def __init__(self, encode_type, text):
    ...
Parameter Type Description
encode_type groupdocs.signature.domain.QrCodeType Specifies QR-Code encode type.
text str Set Text of QR-Code signature.

See Also