Skip to content

UpdateProductStockMessage

// RB2 Core Connect
namespace CoreConnect.Commerce.Messages;
public class UpdateProductStockMessage
{
/// <summary>
/// Product SKU
/// </summary>
public string? SKU { get; set; }
/// <summary>
/// Channel; could be a store or location
/// </summary>
public string? Channel { get; set; }
/// <summary>
/// Quantity
/// </summary>
public long Quantity { get; set; }
}