greengrasssdk/stream_manager/data/__init__.py [1763:1793]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            )
        if "batchSize" in d:
            v["batch_size"] = (
                int.from_dict(d["batchSize"])
                if hasattr(int, "from_dict")
                else d["batchSize"]
            )
        if "batchIntervalMillis" in d:
            v["batch_interval_millis"] = (
                int.from_dict(d["batchIntervalMillis"])
                if hasattr(int, "from_dict")
                else d["batchIntervalMillis"]
            )
        if "priority" in d:
            v["priority"] = (
                int.from_dict(d["priority"])
                if hasattr(int, "from_dict")
                else d["priority"]
            )
        if "startSequenceNumber" in d:
            v["start_sequence_number"] = (
                int.from_dict(d["startSequenceNumber"])
                if hasattr(int, "from_dict")
                else d["startSequenceNumber"]
            )
        if "disabled" in d:
            v["disabled"] = (
                bool.from_dict(d["disabled"])
                if hasattr(bool, "from_dict")
                else d["disabled"]
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



greengrasssdk/stream_manager/data/__init__.py [2838:2868]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            )
        if "batchSize" in d:
            v["batch_size"] = (
                int.from_dict(d["batchSize"])
                if hasattr(int, "from_dict")
                else d["batchSize"]
            )
        if "batchIntervalMillis" in d:
            v["batch_interval_millis"] = (
                int.from_dict(d["batchIntervalMillis"])
                if hasattr(int, "from_dict")
                else d["batchIntervalMillis"]
            )
        if "priority" in d:
            v["priority"] = (
                int.from_dict(d["priority"])
                if hasattr(int, "from_dict")
                else d["priority"]
            )
        if "startSequenceNumber" in d:
            v["start_sequence_number"] = (
                int.from_dict(d["startSequenceNumber"])
                if hasattr(int, "from_dict")
                else d["startSequenceNumber"]
            )
        if "disabled" in d:
            v["disabled"] = (
                bool.from_dict(d["disabled"])
                if hasattr(bool, "from_dict")
                else d["disabled"]
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



