Account
public class Account : Item
An account or subscription, for instance for some online service, or a bank account or wallet.
-
A handle.
Declaration
Swift
@objc dynamic var handle: String?
-
The name to display, for Persons this could be a first or last name, both, or a phonenumber.
Declaration
Swift
@objc dynamic var displayName: String?
-
A service of any kind.
Declaration
Swift
@objc dynamic var service: String?
-
The type or (sub)category of some Item.
Declaration
Swift
@objc dynamic var itemType: String?
-
URL to avatar image used by WhatsApp.
Declaration
Swift
@objc dynamic var avatarUrl: String?
-
The Person this Item belongs to.
Declaration
Swift
var belongsTo: Results<Person>? { get }
-
The price or cost of an Item, typically for one instance of the Item or the defaultQuantity.
Declaration
Swift
var price: Results<Measure>? { get }
-
The location of for example where the event is happening, an organization is located, or where an action takes place.
Declaration
Swift
var location: Results<Location>? { get }
-
An organization, for instance an NGO, company or school.
Declaration
Swift
var organization: Results<Organization>? { get }
-
Undocumented
Declaration
Swift
public required convenience init(from decoder: Decoder) throws
-
Declaration
Swift
override var computedTitle: String { get }