Table of Contents

Class LedgerPaymentInfoViewModel

Namespace
Dynamicweb.Ecommerce.Frontend
Assembly
Dynamicweb.Ecommerce.dll

Represents the view model for the Ledger Payment Info.

public class LedgerPaymentInfoViewModel : ViewModelBase
Inheritance
LedgerPaymentInfoViewModel
Inherited Members

Properties

CreditCardNumber

Gets the masked credit card number associated with the transaction, if available.

public string? CreditCardNumber { get; set; }

Property Value

string

CreditCardType

Gets the credit card type used in the transaction, if available.

public string? CreditCardType { get; set; }

Property Value

string

IsPaid

Gets a value indicating whether the payment order has been completed.

public bool IsPaid { get; set; }

Property Value

bool

PaymentDate

Gets the date and time when the payment order was completed, if available.

public DateTime? PaymentDate { get; set; }

Property Value

DateTime?

PaymentMethod

Gets the payment method used for the payment order.

public string? PaymentMethod { get; set; }

Property Value

string

PaymentOrderId

Gets the identifier of the payment order associated with the ledger.

public string PaymentOrderId { get; set; }

Property Value

string

TransactionId

Gets the identifier of the payment transaction, if available.

public string? TransactionId { get; set; }

Property Value

string
To top