Soomla.Store.UpgradeVG.toJSONObject C# (CSharp) Method

toJSONObject() public method

see parent.
public toJSONObject ( ) : JSONObject
return JSONObject
		public override JSONObject toJSONObject() 
		{
	        JSONObject jsonObject = base.toJSONObject();
            jsonObject.AddField(StoreJSONConsts.VGU_GOOD_ITEMID, this.GoodItemId);
            jsonObject.AddField(StoreJSONConsts.VGU_PREV_ITEMID, string.IsNullOrEmpty(this.PrevItemId) ? "" : this.PrevItemId);
			jsonObject.AddField(StoreJSONConsts.VGU_NEXT_ITEMID, string.IsNullOrEmpty(this.NextItemId) ? "" : this.NextItemId);
	
	        return jsonObject;
		}