-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCardType.cs
More file actions
32 lines (32 loc) · 774 Bytes
/
CardType.cs
File metadata and controls
32 lines (32 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace SagePay.IntegrationKit
{
public enum CardType
{
NONE,
VISA,
MC,
DELTA,
MAESTRO,
UKE,
AMEX,
DC,
JCB,
LASER,
PAYPAL,
SWITCH,
[SagePayProtocolVersion(ProtocolVersion.V_300)]
PLCC,
[SagePayProtocolVersion(ProtocolVersion.V_300)]
MCDEBIT,
[SagePayProtocolVersion(ProtocolVersion.V_300)]
EPS,
[SagePayProtocolVersion(ProtocolVersion.V_300)]
GIROPAY,
[SagePayProtocolVersion(ProtocolVersion.V_300)]
IDEAL,
[SagePayProtocolVersion(ProtocolVersion.V_300)]
SOFORT,
[SagePayProtocolVersion(ProtocolVersion.V_300)]
ELV
}
}