Class CreditCard
CreditCard
public sealed class CreditCard
- Inheritance
-
CreditCard
- Inherited Members
Properties
Cvc
3-digit card verification code.
[JsonPropertyName("cvc")]
public string Cvc { get; set; }
Property Value
ExpiryMonth
2-digit expiry month.
[JsonPropertyName("expiryMonth")]
public string ExpiryMonth { get; set; }
Property Value
ExpiryYear
4-digit expiry year.
[JsonPropertyName("expiryYear")]
public string ExpiryYear { get; set; }
Property Value
Name
Name of the credit card owner.
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Number
16-digit credit card number.
[JsonPropertyName("number")]
public string Number { get; set; }