Receipt

public class Receipt : Item

A bill that describes money owed for some Transaction.

  • The date something is due.

    Declaration

    Swift

    @objc
    dynamic var dateDue: Date?
  • Any type of file that can be stored on disk.

    Declaration

    Swift

    var file: File? { get }
  • An agreement between a buyer and a seller to exchange an asset for payment.

    Declaration

    Swift

    var transaction: Transaction? { get }
  • Undocumented

    Declaration

    Swift

    public required convenience init(from decoder: Decoder) throws