Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 969 Bytes

File metadata and controls

27 lines (20 loc) · 969 Bytes

AgentGraphEdgePost

An edge in an agent graph connecting two config

Properties

Name Type Description Notes
key string A unique key for this edge within the graph [default to undefined]
sourceConfig string The config key that is the source of this edge [default to undefined]
targetConfig string The config key that is the target of this edge [default to undefined]
handoff object The handoff options from the source config to the target config [optional] [default to undefined]

Example

import { AgentGraphEdgePost } from 'launchdarkly-api-typescript';

const instance: AgentGraphEdgePost = {
    key,
    sourceConfig,
    targetConfig,
    handoff,
};

[Back to Model list] [Back to API list] [Back to README]