Table of Contents

Class PaymentCardExpirationViewModel

Namespace
Dynamicweb.Ecommerce.Frontend
Assembly
Dynamicweb.Ecommerce.dll
public sealed class PaymentCardExpirationViewModel : ViewModelBase
Inheritance
PaymentCardExpirationViewModel
Inherited Members

Properties

ExpirationMonth

Expiration month of the card.

public required int ExpirationMonth { get; init; }

Property Value

int

ExpirationYear

Expiration year of the card.

public required int ExpirationYear { get; init; }

Property Value

int

Id

The identifier of the expiring payment card token (internal id).

public required int Id { get; init; }

Property Value

int

Identifier

A display identifier for the card (for example a masked card number).

public string? Identifier { get; init; }

Property Value

string

Name

Friendly name for the expiring card (e.g. "My Visa").

public string? Name { get; init; }

Property Value

string
To top