static public int get_inspectorUpdater(IntPtr l)
 {
     try {
         DG.Tweening.Core.DOTweenComponent self = (DG.Tweening.Core.DOTweenComponent)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.inspectorUpdater);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_inspectorUpdater(IntPtr l)
 {
     try {
         DG.Tweening.Core.DOTweenComponent self = (DG.Tweening.Core.DOTweenComponent)checkSelf(l);
         System.Int32 v;
         checkType(l, 2, out v);
         self.inspectorUpdater = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
// fields
    static void DOTweenComponent_inspectorUpdater(JSVCall vc)
    {
        if (vc.bGet)
        {
            DG.Tweening.Core.DOTweenComponent _this = (DG.Tweening.Core.DOTweenComponent)vc.csObj;
            var result = _this.inspectorUpdater;
            JSApi.setInt32((int)JSApi.SetType.Rval, (System.Int32)(result));
        }
        else
        {
            System.Int32 arg0 = (System.Int32)JSApi.getInt32((int)JSApi.GetType.Arg);
            DG.Tweening.Core.DOTweenComponent _this = (DG.Tweening.Core.DOTweenComponent)vc.csObj;
            _this.inspectorUpdater = arg0;
        }
    }
 static public int SetCapacity(IntPtr l)
 {
     try {
         DG.Tweening.Core.DOTweenComponent self = (DG.Tweening.Core.DOTweenComponent)checkSelf(l);
         System.Int32 a1;
         checkType(l, 2, out a1);
         System.Int32 a2;
         checkType(l, 3, out a2);
         var ret = self.SetCapacity(a1, a2);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }