| Name | Type | Description | Notes |
|---|---|---|---|
| Result | map[string]interface{} | Contains a `value` and `_type` property. This is described this way, because `value` can hold any JSON type and most open api generators (but not all) have problems with such types or are inconsistent with the OpenAPI spec. The `_type` property describes the original type of the result value during script execution. The `value` property holds the resulting value serialized to JSON. The `value` property can be of any JSON type, i.e. null, undefined, boolean, number, string, array or object. |
func NewExecuteScriptResponse(result map[string]interface{}, ) *ExecuteScriptResponse
NewExecuteScriptResponse instantiates a new ExecuteScriptResponse 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 NewExecuteScriptResponseWithDefaults() *ExecuteScriptResponse
NewExecuteScriptResponseWithDefaults instantiates a new ExecuteScriptResponse 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 *ExecuteScriptResponse) GetResult() map[string]interface{}
GetResult returns the Result field if non-nil, zero value otherwise.
func (o *ExecuteScriptResponse) GetResultOk() (*map[string]interface{}, 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 *ExecuteScriptResponse) SetResult(v map[string]interface{})
SetResult sets Result field to given value.
func (o *ExecuteScriptResponse) SetResultNil(b bool)
SetResultNil sets the value for Result to be an explicit nil
func (o *ExecuteScriptResponse) UnsetResult()
UnsetResult ensures that no value is present for Result, not even an explicit nil