PersonCardDetails
public class PersonCardDetails : Codable
This class represents existing Card information that belongs to an existing User. Used during the authorization and authentication check of the user using.
-
Represents the PK of the Person Card item that is assigned to an existing User.
Declaration
Swift
public let personCardID: String -
Represents the name given to card.
Declaration
Swift
public let cardName: String -
Represents the PK of the Card item that is assigned to an existing User.
Declaration
Swift
public let cardID: String -
Represents the name of the Access Control system that the card belongs to.
Declaration
Swift
public let cardACSystemName: String -
Represents the card serial number of the card, if supported (typically for smart cards).
Declaration
Swift
public let cardSerialNumber: Int64 -
Represents the external number / hotstamp of the card that is assigned to an existing user.
Declaration
Swift
public let externalCardNumber: String? -
Represents the card format.
Declaration
Swift
public let cardType: Int? -
Represents the system that has issued this card.
Declaration
Swift
public let issuedBy: String -
Represents whether this card has been deleted.
Declaration
Swift
public let isDeleted: Bool -
Date and time of the card activation.
Declaration
Swift
public let activationDate: Int64 -
Date and time of the card de-activation.
Declaration
Swift
public let deactivationDate: Int64 -
Date and time of the last use of the card.
Declaration
Swift
public let lastUsed: Int64 -
HID invitation code
Declaration
Swift
public let hidInvitationCode: String? -
HID card Redeemed Date-Time
Declaration
Swift
public let invitationRedeemedDate: Int64 -
Represents the facility code of the card that is assigned to an existing user
Declaration
Swift
public let facilityCode: Int -
Type of credential
CredentialTypeDeclaration
Swift
public let credentialType: CredentialType
PersonCardDetails Class Reference