CreditCardMeta
public struct CreditCardMeta : Equatable, Hashable
extension CreditCardMeta: Sendable
Metadata fields managed internally by the library: the guid, timestamps and
local sync state. These are automatically set on add_credit_card and
updated on operations like touch and update_credit_card. Not included in
UpdatableCreditCardFields; use add_credit_card_with_meta when importing
records that already have metadata.
-
Declaration
Swift
public var guid: String -
Declaration
Swift
public var timeCreated: Int64 -
Declaration
Swift
public var timeLastUsed: Int64? -
Declaration
Swift
public var timeLastModified: Int64 -
Declaration
Swift
public var timesUsed: Int64 -
Declaration
Swift
public var syncChangeCounter: Int64 -
Declaration
Swift
public init(guid: String, timeCreated: Int64, timeLastUsed: Int64?, timeLastModified: Int64, timesUsed: Int64, syncChangeCounter: Int64)