> For the complete documentation index, see [llms.txt](https://docs.eternals.game/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eternals.game/gdk-documentation/unity/api-reference/v1.0.0/ninetyeight.neshopitem.md).

# NinetyEight.NEShopItem

## Struct NEShopItem <a href="#ninetyeight_neshopitem" id="ninetyeight_neshopitem"></a>

Namespace: NinetyEight\
Assembly: APIReference.dll

Represents an item available for purchase in the shop.\
Includes duration, amount, code, and type.

```csharp
[Serializable]
public struct NEShopItem
```

**Inherited Members**

[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.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),[object.ReferenceEquals(object?, object?)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)

### Fields

#### duration <a href="#ninetyeight_neshopitem_duration" id="ninetyeight_neshopitem_duration"></a>

Duration of the item (e.g., in seconds).

```csharp
public int duration
```

**Field Value**

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

#### itemAmount <a href="#ninetyeight_neshopitem_itemamount" id="ninetyeight_neshopitem_itemamount"></a>

Amount of the item available for purchase.

```csharp
public int itemAmount
```

**Field Value**

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

#### itemCode <a href="#ninetyeight_neshopitem_itemcode" id="ninetyeight_neshopitem_itemcode"></a>

Unique code identifying the item.

```csharp
public string itemCode
```

**Field Value**

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

#### type <a href="#ninetyeight_neshopitem_type" id="ninetyeight_neshopitem_type"></a>

Type or category of the item.

```csharp
public string type
```

**Field Value**

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