Table of Contents

Class PaymentTransactionSearchFilter

Namespace
Dynamicweb.Ecommerce.Orders.PaymentTransactions
Assembly
Dynamicweb.Ecommerce.dll

Represents the payment transaction search filter

public sealed class PaymentTransactionSearchFilter
Inheritance
PaymentTransactionSearchFilter
Inherited Members

Properties

CreatedFrom

The date the payment transaction was created from

public DateTime? CreatedFrom { get; set; }

Property Value

DateTime?

CreatedTo

The date the payment transaction was created to

public DateTime? CreatedTo { get; set; }

Property Value

DateTime?

PageSize

The page size

public int PageSize { get; init; }

Property Value

int

SortBy

The sort column to sort by

public string? SortBy { get; set; }

Property Value

string

SortDirection

The sort direction to sort by

public SortDirection SortDirection { get; set; }

Property Value

SortDirection

State

The state to filter by

public PaymentTransactionState State { get; set; }

Property Value

PaymentTransactionState

TransactionNumber

The transaction number to filter by

public string? TransactionNumber { get; set; }

Property Value

string
To top