"""
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.
"""

from typing import Any, Literal

from ...invoke_activity import InvokeActivity


class ConfigSubmitInvokeActivity(InvokeActivity):
    """
    Represents the config submit invoke activity.
    """

    type: Literal["invoke"] = "invoke"  #

    name: Literal["config/submit"] = "config/submit"  #
    """The name of the operation associated with an invoke or event activity."""

    value: Any
    """The value associated with the activity."""
