Skip to content

AttributeValue

// RB2 Core Connect
namespace CoreConnect.Commerce.Core;
public class AttributeValue
{
/// <summary>
/// The Boolean Value of the Attribute
/// </summary>
public bool? BooleanValue { get; set; }
/// <summary>
/// The String Value of the Attribute
/// </summary>
public string? StringValue { get; set; }
/// <summary>
/// The String Values of the Attribute
/// </summary>
public string[]? StringValues { get; set; }
[HotChocolate.GraphQLType(typeof(HotChocolate.Types.JsonType))]
public object? ObjectValue { get; set; }
public long? LongValue { get; set; }
public decimal? DecimalValue { get; set; }
}