> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.ProductExtraDataField

# <a id="SuperOffice_WebApi_Data_ProductExtraDataField" /> Class ProductExtraDataField

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for ProductExtraDataField.
A way to show some simple extra data on a product, typically to hep the user to identify the correct product. Basically a bucket of additional info that the ERP system would like to store and show in the user interface. Information placed here is shown in the GUI if the “provide-extra-data” capability is true.

```csharp theme={null}
public class ProductExtraDataField : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[ProductExtraDataField](SuperOffice.WebApi.Data.ProductExtraDataField.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### <a id="SuperOffice_WebApi_Data_ProductExtraDataField__ctor" /> ProductExtraDataField()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public ProductExtraDataField()
```

## Properties

### <a id="SuperOffice_WebApi_Data_ProductExtraDataField_Name" /> Name

Label for the field

```csharp theme={null}
public virtual string Name { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProductExtraDataField_Type" /> Type

String, url, image. How the value should be interpreted.
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ExtraDataFieldType? Type { get; set; }
```

#### Property Value

[ExtraDataFieldType](SuperOffice.WebApi.Data.ExtraDataFieldType.md)?

#### See Also

[ProductExtraDataField](SuperOffice.WebApi.Data.ProductExtraDataField.md).[Type\_String](SuperOffice.WebApi.Data.ProductExtraDataField.md#SuperOffice_WebApi_Data_ProductExtraDataField_Type_String)

### <a id="SuperOffice_WebApi_Data_ProductExtraDataField_Type_String" /> Type\_String

String, url, image. How the value should be interpreted.
Raw string enum value.

```csharp theme={null}
[JsonProperty("Type")]
public string Type_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[ProductExtraDataField](SuperOffice.WebApi.Data.ProductExtraDataField.md).[Type](SuperOffice.WebApi.Data.ProductExtraDataField.md#SuperOffice_WebApi_Data_ProductExtraDataField_Type)

### <a id="SuperOffice_WebApi_Data_ProductExtraDataField_Value" /> Value

Value for the field. If type is string, it can contain formatspecifiers (use this for displaying numbers correctly as the user's computer is set up).

```csharp theme={null}
public virtual string Value { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

## See Also

[QuoteAgent](SuperOffice.WebApi.Agents.QuoteAgent.md)


## Related topics

- [SuperOffice.WebApi.Data.Product](/en/api/reference/webapi/SuperOffice.WebApi.Data.Product.md)
- [SuperOffice.WebApi.Data.QuoteLine](/en/api/reference/webapi/SuperOffice.WebApi.Data.QuoteLine.md)
- [SuperOffice.WebApi.Data.BlobLinkType](/en/api/reference/webapi/SuperOffice.WebApi.Data.BlobLinkType.md)
- [SuperOffice.WebApi.Data.ExtraDataFieldType](/en/api/reference/webapi/SuperOffice.WebApi.Data.ExtraDataFieldType.md)
- [SuperOffice.WebApi.Data.UserPreferenceStrings.ExtraFields](/en/api/reference/webapi/SuperOffice.WebApi.Data.UserPreferenceStrings.ExtraFields.md)
- [SuperOffice.WebApi.Data.User](/en/api/reference/webapi/SuperOffice.WebApi.Data.User.md)
