CardInformation
An object representing a card that can be added to Svea App Wallet.
Property | Description | Type | Optional |
---|---|---|---|
cardNumber | The card number | String | No |
expirationDate | The card expiry date | CardDate | No |
label | A name which the user sets for the card, such as “My first card” | String | Yes |
securityCode | 3 or 4 digits on the back of the card | String | No |
isDefault | Defines if the card is the default payment method | Boolean | Yes |
struct CardInformation {
cardNumber: String
expirationDate: CardDate
label: String?
securityCode: String
isDefault : Bool
}