namespace CoreConnect.Commerce.Catalog;
public class GetProductRequest
/// The ID of the Product.
public string? Id { get; set; }
/// The Key of the Product.
public string? Key { get; set; }
/// The Slug of the Product.
public string? Slug { get; set; }
/// Gets or sets the variants filters.
public VariantFilter? VariantFilter { get; set; }
/// Gets or sets whether to also include hidden categories.
public bool? IncludeHiddenCategories { get; set; }
/// Gets or sets whether to also include Filter
public bool? IncludeFilterOptions { get; set; }