DeletedRecord

public struct DeletedRecord
extension DeletedRecord: Codable
extension DeletedRecord: JSONDecodable
extension DeletedRecord: DictionaryConvertible
extension DeletedRecord: Equatable

Generic record object which contains JSON representation of your record.

  • The primary key of deleted record.

    Declaration

    Swift

    public let primaryKey: String
  • the identiier of the remote table.

    Declaration

    Swift

    public let tableNumber: Double?
  • The table name.

    Declaration

    Swift

    public let tableName: String
  • The stamp when the record has been deleted.

    Declaration

    Swift

    public let stamp: Double
  • create an instance

    Declaration

    Swift

    public init(primaryKey: String, tableNumber: Double?, tableName: String, stamp: Double)
  • Undocumented

    Declaration

    Swift

    public init?(json: JSON)

DictionaryConvertible

Equatable

  • Declaration

    Swift

    public static func == (lhf: DeletedRecord, rhf: DeletedRecord) -> Bool