CreditCard
public struct CreditCard
extension CreditCard: Equatable, Hashable
What you get back as a credit-card.
-
Declaration
Swift
public var guid: String
-
Declaration
Swift
public var ccName: String
-
Declaration
Swift
public var ccNumberEnc: String
-
Declaration
Swift
public var ccNumberLast4: String
-
Declaration
Swift
public var ccExpMonth: Int64
-
Declaration
Swift
public var ccExpYear: Int64
-
Declaration
Swift
public var ccType: 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
-
init(guid:
ccName: ccNumberEnc: ccNumberLast4: ccExpMonth: ccExpYear: ccType: timeCreated: timeLastUsed: timeLastModified: timesUsed: ) Declaration
Swift
public init(guid: String, ccName: String, ccNumberEnc: String, ccNumberLast4: String, ccExpMonth: Int64, ccExpYear: Int64, ccType: String, timeCreated: Int64, timeLastUsed: Int64?, timeLastModified: Int64, timesUsed: Int64)
-
Declaration
Swift
public static func == (lhs: CreditCard, rhs: CreditCard) -> Bool
-
Declaration
Swift
public func hash(into hasher: inout Hasher)