Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 1.38 KB

QrCode.md

File metadata and controls

51 lines (29 loc) · 1.38 KB

QrCode

An object representing QR code details for invoices.

Properties

Name Type Required Description Examples
QrCodeType QrCodeType ☑️

Methods

NewQrCode

func NewQrCode(qrCodeType QrCodeType, ) *QrCode

NewQrCode instantiates a new QrCode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewQrCodeWithDefaults

func NewQrCodeWithDefaults() *QrCode

NewQrCodeWithDefaults instantiates a new QrCode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetQrCodeType

func (o *QrCode) GetQrCodeType() QrCodeType

GetQrCodeType returns the QrCodeType field if non-nil, zero value otherwise.

GetQrCodeTypeOk

func (o *QrCode) GetQrCodeTypeOk() (*QrCodeType, bool)

GetQrCodeTypeOk returns a tuple with the QrCodeType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetQrCodeType

func (o *QrCode) SetQrCodeType(v QrCodeType)

SetQrCodeType sets QrCodeType field to given value.

[Back to README]