AddItemResult.instanceId
public string instanceId { get; }Description#
Gets the instance id of the item that was added
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AddItemResult target) { string result = target.instanceId; } }