| Name | Type | Description | Notes |
|---|---|---|---|
| ExecutionId | string | ||
| ToolName | string | ||
| Status | string | Execution status: pending, running, complete, or failed | |
| Result | Pointer to GetAIToolExecutionStatus200ResponseResult | [optional] | |
| Error | Pointer to string | Error message (only present when status='failed') | [optional] |
| CreatedAt | int32 | Unix timestamp when execution was created | |
| StartedAt | Pointer to int32 | Unix timestamp when execution started (if status >= 'running') | [optional] |
| CompletedAt | Pointer to int32 | Unix timestamp when execution completed (if status in ['complete', 'failed']) | [optional] |
| Duration | Pointer to float32 | Execution duration in seconds (if completed) | [optional] |
func NewGetAIToolExecutionStatus200Response(executionId string, toolName string, status string, createdAt int32, ) *GetAIToolExecutionStatus200Response
NewGetAIToolExecutionStatus200Response instantiates a new GetAIToolExecutionStatus200Response 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 NewGetAIToolExecutionStatus200ResponseWithDefaults() *GetAIToolExecutionStatus200Response
NewGetAIToolExecutionStatus200ResponseWithDefaults instantiates a new GetAIToolExecutionStatus200Response 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 *GetAIToolExecutionStatus200Response) GetExecutionId() string
GetExecutionId returns the ExecutionId field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetExecutionIdOk() (*string, bool)
GetExecutionIdOk returns a tuple with the ExecutionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetExecutionId(v string)
SetExecutionId sets ExecutionId field to given value.
func (o *GetAIToolExecutionStatus200Response) GetToolName() string
GetToolName returns the ToolName field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetToolNameOk() (*string, bool)
GetToolNameOk returns a tuple with the ToolName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetToolName(v string)
SetToolName sets ToolName field to given value.
func (o *GetAIToolExecutionStatus200Response) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *GetAIToolExecutionStatus200Response) GetResult() GetAIToolExecutionStatus200ResponseResult
GetResult returns the Result field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetResultOk() (*GetAIToolExecutionStatus200ResponseResult, bool)
GetResultOk returns a tuple with the Result field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetResult(v GetAIToolExecutionStatus200ResponseResult)
SetResult sets Result field to given value.
func (o *GetAIToolExecutionStatus200Response) HasResult() bool
HasResult returns a boolean if a field has been set.
func (o *GetAIToolExecutionStatus200Response) GetError() string
GetError returns the Error field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetErrorOk() (*string, bool)
GetErrorOk returns a tuple with the Error field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetError(v string)
SetError sets Error field to given value.
func (o *GetAIToolExecutionStatus200Response) HasError() bool
HasError returns a boolean if a field has been set.
func (o *GetAIToolExecutionStatus200Response) GetCreatedAt() int32
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetCreatedAtOk() (*int32, 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 *GetAIToolExecutionStatus200Response) SetCreatedAt(v int32)
SetCreatedAt sets CreatedAt field to given value.
func (o *GetAIToolExecutionStatus200Response) GetStartedAt() int32
GetStartedAt returns the StartedAt field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetStartedAtOk() (*int32, bool)
GetStartedAtOk returns a tuple with the StartedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetStartedAt(v int32)
SetStartedAt sets StartedAt field to given value.
func (o *GetAIToolExecutionStatus200Response) HasStartedAt() bool
HasStartedAt returns a boolean if a field has been set.
func (o *GetAIToolExecutionStatus200Response) GetCompletedAt() int32
GetCompletedAt returns the CompletedAt field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetCompletedAtOk() (*int32, bool)
GetCompletedAtOk returns a tuple with the CompletedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetCompletedAt(v int32)
SetCompletedAt sets CompletedAt field to given value.
func (o *GetAIToolExecutionStatus200Response) HasCompletedAt() bool
HasCompletedAt returns a boolean if a field has been set.
func (o *GetAIToolExecutionStatus200Response) GetDuration() float32
GetDuration returns the Duration field if non-nil, zero value otherwise.
func (o *GetAIToolExecutionStatus200Response) GetDurationOk() (*float32, bool)
GetDurationOk returns a tuple with the Duration field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *GetAIToolExecutionStatus200Response) SetDuration(v float32)
SetDuration sets Duration field to given value.
func (o *GetAIToolExecutionStatus200Response) HasDuration() bool
HasDuration returns a boolean if a field has been set.