Device

public class Device : Item

A business corporation.

  • The Device ID, used for smartphones and tablets.

    Declaration

    Swift

    @objc
    dynamic var deviceID: String?
  • The make number of a device, for instance a mobile phone.

    Declaration

    Swift

    @objc
    dynamic var make: String?
  • The manufacturer of the Item

    Declaration

    Swift

    @objc
    dynamic var manufacturer: String?
  • The model number or name of an Item, for instance of a mobile phone.

    Declaration

    Swift

    @objc
    dynamic var model: String?
  • The name of the item.

    Declaration

    Swift

    @objc
    dynamic var name: String?
  • The date this item was acquired.

    Declaration

    Swift

    @objc
    dynamic var dateAcquired: Date?
  • The date this Item was lost.

    Declaration

    Swift

    @objc
    dynamic var dateLost: Date?
  • Undocumented

    Declaration

    Swift

    public required convenience init(from decoder: Decoder) throws