Package-level declarations

Types

Link copied to clipboard
data class Seller(val name: String? = null, val vatId: String? = null, val address: SellerAddress? = null) : Parcelable

Information on the document issuer / providing company / seller.

Link copied to clipboard
data class SellerAddress(val street: String? = null, val postalCode: String? = null, val city: String? = null, val countryCode: String? = null) : Parcelable

Address of the providing company / seller.