Skip to content

GetMyOrdersRequest

// RB2 Core Connect
using HotChocolate;
namespace CoreConnect.Commerce.Orders;
public record GetMyOrdersRequest
{
public int Page { get; set; }
public int Limit { get; set; }
public OrderSortBy? SortBy { get; set; }
public string? OrderNumber { get; set; }
public DateTime? MinOrderDate { get; set; }
public DateTime? MaxOrderDate { get; set; }
[GraphQLIgnore]
public string? CustomerId { get; set; }
[GraphQLIgnore]
public string? CompanyId { get; set; }
[GraphQLIgnore]
public string? CustomerLocale { get; set; }
}