On this pageAddItemResult.successpublic bool success { get; }CopyDescription#Gets if the add was completely successfulUsage#Exampleusing NullSave.GDTK.Inventoryusing UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(AddItemResult target) { bool result = target.success; } }Copy