Table of Contents

Class Detail

Namespace
Dynamicweb.Ecommerce.Products
Assembly
Dynamicweb.Ecommerce.dll

Represents product details objects

[Serializable]
public class Detail
Inheritance
Detail
Inherited Members

Examples

Constructors

Detail()

Default empty constructor

public Detail()

Properties

Description

Gets or sets the detail description.

public string? Description { get; set; }

Property Value

string

GroupId

Gets or sets detail group id.

public int GroupId { get; set; }

Property Value

int

Id

Gets or sets id of product detail.

public string Id { get; set; }

Property Value

string

IsDefault

Gets or sets detail value.

public bool IsDefault { get; }

Property Value

bool

Keywords

public string? Keywords { get; set; }

Property Value

string

LanguageId

Gets or sets current product language ID.

public required string LanguageId { get; set; }

Property Value

string

Name

public string? Name { get; set; }

Property Value

string

ProductId

Gets or sets id of product, details of this product are stored in current object.

public required string ProductId { get; set; }

Property Value

string

ShowInHistory

Gets or sets a value indicating whether the asset should be shown in history even outside its publication period.

public bool ShowInHistory { get; set; }

Property Value

bool

SortOrder

Gets or sets detail sort order.

public int SortOrder { get; set; }

Property Value

int

Type

Gets or sets detail type.

public int Type { get; set; }

Property Value

int

ValidFrom

Gets or sets the start of the publication period.

public DateTime? ValidFrom { get; set; }

Property Value

DateTime?

ValidTo

Gets or sets the end of the publication period.

public DateTime? ValidTo { get; set; }

Property Value

DateTime?

Value

Gets or sets detail value.

public required string Value { get; set; }

Property Value

string

VariantId

Gets or sets current product variant ID.

public required string VariantId { get; set; }

Property Value

string

Version

Gets or sets a version label for rendering information.

public string? Version { get; set; }

Property Value

string

Methods

Clone()

public Detail Clone()

Returns

Detail
To top