| Name | Type | Description | Notes |
|---|---|---|---|
| Key | string | ||
| Access | Pointer to AiConfigsAccess | [optional] | |
| Links | Pointer to ParentAndSelfLinks | [optional] | |
| Maintainer | Pointer to AIConfigMaintainer | [optional] | |
| Description | Pointer to string | [optional] | |
| Schema | map[string]interface{} | JSON Schema defining the tool's parameters for LLM consumption | |
| CustomParameters | Pointer to map[string]interface{} | Custom metadata and configuration for application-level use (not sent to LLM) | [optional] |
| Version | int32 | ||
| CreatedAt | int64 |
func NewAITool(key string, schema map[string]interface{}, version int32, createdAt int64, ) *AITool
NewAITool instantiates a new AITool 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 NewAIToolWithDefaults() *AITool
NewAIToolWithDefaults instantiates a new AITool 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 *AITool) GetKey() string
GetKey returns the Key field if non-nil, zero value otherwise.
func (o *AITool) 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 *AITool) SetKey(v string)
SetKey sets Key field to given value.
func (o *AITool) GetAccess() AiConfigsAccess
GetAccess returns the Access field if non-nil, zero value otherwise.
func (o *AITool) GetAccessOk() (*AiConfigsAccess, bool)
GetAccessOk returns a tuple with the Access field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AITool) SetAccess(v AiConfigsAccess)
SetAccess sets Access field to given value.
func (o *AITool) HasAccess() bool
HasAccess returns a boolean if a field has been set.
func (o *AITool) GetLinks() ParentAndSelfLinks
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *AITool) GetLinksOk() (*ParentAndSelfLinks, bool)
GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AITool) SetLinks(v ParentAndSelfLinks)
SetLinks sets Links field to given value.
func (o *AITool) HasLinks() bool
HasLinks returns a boolean if a field has been set.
func (o *AITool) GetMaintainer() AIConfigMaintainer
GetMaintainer returns the Maintainer field if non-nil, zero value otherwise.
func (o *AITool) GetMaintainerOk() (*AIConfigMaintainer, bool)
GetMaintainerOk returns a tuple with the Maintainer field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AITool) SetMaintainer(v AIConfigMaintainer)
SetMaintainer sets Maintainer field to given value.
func (o *AITool) HasMaintainer() bool
HasMaintainer returns a boolean if a field has been set.
func (o *AITool) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *AITool) 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 *AITool) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *AITool) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *AITool) GetSchema() map[string]interface{}
GetSchema returns the Schema field if non-nil, zero value otherwise.
func (o *AITool) GetSchemaOk() (*map[string]interface{}, bool)
GetSchemaOk returns a tuple with the Schema field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AITool) SetSchema(v map[string]interface{})
SetSchema sets Schema field to given value.
func (o *AITool) GetCustomParameters() map[string]interface{}
GetCustomParameters returns the CustomParameters field if non-nil, zero value otherwise.
func (o *AITool) GetCustomParametersOk() (*map[string]interface{}, bool)
GetCustomParametersOk returns a tuple with the CustomParameters field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AITool) SetCustomParameters(v map[string]interface{})
SetCustomParameters sets CustomParameters field to given value.
func (o *AITool) HasCustomParameters() bool
HasCustomParameters returns a boolean if a field has been set.
func (o *AITool) GetVersion() int32
GetVersion returns the Version field if non-nil, zero value otherwise.
func (o *AITool) GetVersionOk() (*int32, bool)
GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AITool) SetVersion(v int32)
SetVersion sets Version field to given value.
func (o *AITool) GetCreatedAt() int64
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
func (o *AITool) GetCreatedAtOk() (*int64, bool)
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AITool) SetCreatedAt(v int64)
SetCreatedAt sets CreatedAt field to given value.