Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
knock-twilio / twilio / task_router / workflow_ruletarget.py
Size: Mime:
class WorkflowRuleTarget:
    """
    Workflow Rule target which is encompassed
    inside targets

    ..attribute::queue

      The queue which will handle the task matching this filter target

    ..attribute::expression

       The dynamic expression if any for this matching

    ..attribute::priority

      The priority for the target

    ..attribute::timeout

      The timeout before the reservation expires.
    """
    def __init__(self, queue, expression, priority, timeout):

        self.queue = queue
        self.expression = expression
        self.priority = priority
        self.timeout = timeout