| Name | Type | Description | Notes |
|---|---|---|---|
| Key | string | A unique key for the agent graph | |
| Name | string | A human-readable name for the agent graph | |
| Description | Pointer to string | A description of the agent graph | [optional] |
| MaintainerId | Pointer to string | The ID of the member who maintains this agent graph | [optional] |
| MaintainerTeamKey | Pointer to string | The key of the team that maintains this agent graph | [optional] |
| RootConfigKey | Pointer to string | The AI Config key of the root node. A missing root implies a newly created graph with metadata only. | [optional] |
| Edges | Pointer to []AgentGraphEdgePost | The edges in the graph. If edges or rootConfigKey is present, both must be present. | [optional] |
func NewAgentGraphPost(key string, name string, ) *AgentGraphPost
NewAgentGraphPost instantiates a new AgentGraphPost object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewAgentGraphPostWithDefaults() *AgentGraphPost
NewAgentGraphPostWithDefaults instantiates a new AgentGraphPost object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *AgentGraphPost) GetKey() string
GetKey returns the Key field if non-nil, zero value otherwise.
func (o *AgentGraphPost) GetKeyOk() (*string, bool)
GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AgentGraphPost) SetKey(v string)
SetKey sets Key field to given value.
func (o *AgentGraphPost) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *AgentGraphPost) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AgentGraphPost) SetName(v string)
SetName sets Name field to given value.
func (o *AgentGraphPost) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *AgentGraphPost) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AgentGraphPost) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *AgentGraphPost) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *AgentGraphPost) GetMaintainerId() string
GetMaintainerId returns the MaintainerId field if non-nil, zero value otherwise.
func (o *AgentGraphPost) GetMaintainerIdOk() (*string, bool)
GetMaintainerIdOk returns a tuple with the MaintainerId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AgentGraphPost) SetMaintainerId(v string)
SetMaintainerId sets MaintainerId field to given value.
func (o *AgentGraphPost) HasMaintainerId() bool
HasMaintainerId returns a boolean if a field has been set.
func (o *AgentGraphPost) GetMaintainerTeamKey() string
GetMaintainerTeamKey returns the MaintainerTeamKey field if non-nil, zero value otherwise.
func (o *AgentGraphPost) GetMaintainerTeamKeyOk() (*string, bool)
GetMaintainerTeamKeyOk returns a tuple with the MaintainerTeamKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AgentGraphPost) SetMaintainerTeamKey(v string)
SetMaintainerTeamKey sets MaintainerTeamKey field to given value.
func (o *AgentGraphPost) HasMaintainerTeamKey() bool
HasMaintainerTeamKey returns a boolean if a field has been set.
func (o *AgentGraphPost) GetRootConfigKey() string
GetRootConfigKey returns the RootConfigKey field if non-nil, zero value otherwise.
func (o *AgentGraphPost) GetRootConfigKeyOk() (*string, bool)
GetRootConfigKeyOk returns a tuple with the RootConfigKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AgentGraphPost) SetRootConfigKey(v string)
SetRootConfigKey sets RootConfigKey field to given value.
func (o *AgentGraphPost) HasRootConfigKey() bool
HasRootConfigKey returns a boolean if a field has been set.
func (o *AgentGraphPost) GetEdges() []AgentGraphEdgePost
GetEdges returns the Edges field if non-nil, zero value otherwise.
func (o *AgentGraphPost) GetEdgesOk() (*[]AgentGraphEdgePost, bool)
GetEdgesOk returns a tuple with the Edges field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AgentGraphPost) SetEdges(v []AgentGraphEdgePost)
SetEdges sets Edges field to given value.
func (o *AgentGraphPost) HasEdges() bool
HasEdges returns a boolean if a field has been set.