Binding
Represents a binding between an input property and a tool parameter.
Class Diagram
Section titled “Class Diagram”---
title: Binding
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class Binding {
+string name
+string input
}
Yaml Example
Section titled “Yaml Example”name: my-toolinput: input-variableProperties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| name | string | Name of the binding |
| input | string | The input property that will be bound to the tool parameter argument |
Alternate Constructions
Section titled “Alternate Constructions”The following alternate constructions are available for Binding.
These allow for simplified creation of instances using a single property.
string
Section titled “string”The following simplified representation can be used:
value: "example"This is equivalent to the full representation:
value: input: "example"