Table of Contents

Class SavedCardViewModel

Namespace
Dynamicweb.Ecommerce.Frontend.SavedCards
Assembly
Dynamicweb.Ecommerce.dll
public class SavedCardViewModel : FillableViewModelBase
Inheritance
SavedCardViewModel
Inherited Members

Properties

CardType

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

public string CardType { get; set; }

Property Value

string

The card type.

ID

Gets or sets the ID.

public int ID { get; set; }

Property Value

int

The ID.

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

The identifier.

IsDefault

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

public bool IsDefault { get; set; }

Property Value

bool

Name

Gets or sets the name to identify the card.

public string Name { get; set; }

Property Value

string

The name.

Payment

Gets or sets the payment.

public PaymentViewModel Payment { get; set; }

Property Value

PaymentViewModel

The payment.

To top