Added logoUrl
This commit is contained in:
parent
ad23dc3fc3
commit
55427c68ff
|
@ -25,6 +25,12 @@ class Party(
|
||||||
|
|
||||||
// actually there can be multiple bankDetails in eInvoice data model
|
// actually there can be multiple bankDetails in eInvoice data model
|
||||||
val bankDetails: BankDetails? = null,
|
val bankDetails: BankDetails? = null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Currently only used to display the logo of the supplier in generated PDF. There is an element for it in Factur-X
|
||||||
|
* and XRechnung, but the underlying library doesn't map it.
|
||||||
|
*/
|
||||||
|
val logoUrl: String? = null,
|
||||||
) {
|
) {
|
||||||
override fun toString() = "$name, $city"
|
override fun toString() = "$name, $city"
|
||||||
}
|
}
|
Loading…
Reference in New Issue