Table of Contents

Class PaymentCardToken

Namespace
Dynamicweb.Ecommerce.Cart
Assembly
Dynamicweb.Ecommerce.dll

Class PaymentCardToken.

public class PaymentCardToken
Inheritance
PaymentCardToken
Inherited Members

Constructors

PaymentCardToken()

Initializes a new instance of the PaymentCardToken class.

public PaymentCardToken()

Properties

CardType

Gets or sets the card type: visa/mastercard/etc.

public string CardType { get; set; }

Property Value

string

CheckSum

Gets the checksum

public string CheckSum { get; }

Property Value

string

ExpirationMonth

Gets or sets the expiration of the credit card month

public int? ExpirationMonth { get; set; }

Property Value

int?

ExpirationYear

Gets or sets the expiration of the credit card year

public int? ExpirationYear { get; set; }

Property Value

int?

ID

public int ID { get; set; }

Property Value

int

Identifier

Gets or sets the card identifier. It will usually contain the last four digits of the card number. However, this depends on the payment provider.

public string Identifier { get; set; }

Property Value

string

IsDefault

Gets or sets the value determines whether this is user's default payment card.

public bool IsDefault { get; set; }

Property Value

bool

IsNew

public bool IsNew { get; }

Property Value

bool

Name

Gets or sets the name to identify the card.

public string Name { get; set; }

Property Value

string

Payment

Gets Payment provider instance.

public Payment Payment { get; }

Property Value

Payment

PaymentID

Gets or sets which configured PaymentProvider instance is used with this card.

public string PaymentID { get; set; }

Property Value

string

Token

Gets or sets the token issued from the payment provider to be used when processing payments with this card.

public string Token { get; set; }

Property Value

string

UsedDate

Gets or sets date when token was used

public DateTime UsedDate { get; set; }

Property Value

DateTime

UserID

Gets the card user.

public int UserID { get; set; }

Property Value

int
To top