Skip to content

GetMyOrderRequest

// RB2 Core Connect
using HotChocolate;
namespace CoreConnect.Commerce.Orders;
public record GetMyOrderRequest
{
public required string Id { get; set; }
[GraphQLIgnore]
public string? CustomerId { get; set; }
[GraphQLIgnore]
public string? CompanyId { get; set; }
[GraphQLIgnore]
public string? CustomerLocale { get; set; }
}