private static MyRotationFilter FromJSON_1(JSONObject jsonObject)
    {
        if (jsonObject == null)
        {
            return(null);
        }

        MyRotationFilter result = new MyRotationFilter();

        result.RotationAngle = jsonObject.GetNumberSingleValue("rotationAngle").Value;

        return(result);
    }
    private static MyRotationFilter FromJSON_1(JSONObject jsonObject)
    {
        if (jsonObject == null)
        {
            return null;
        }

        MyRotationFilter result = new MyRotationFilter();
        result.RotationAngle = jsonObject.GetNumberSingleValue("rotationAngle").Value;

        return result;
    }