| Name | Type | Description | Notes |
|---|---|---|---|
| Sql | string | SQL query to execute | |
| Params | Pointer to []interface{} | Query parameters for prepared statements | [optional] |
func NewDbQueryRequest(sql string, ) *DbQueryRequest
NewDbQueryRequest instantiates a new DbQueryRequest 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 NewDbQueryRequestWithDefaults() *DbQueryRequest
NewDbQueryRequestWithDefaults instantiates a new DbQueryRequest 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 *DbQueryRequest) GetSql() string
GetSql returns the Sql field if non-nil, zero value otherwise.
func (o *DbQueryRequest) GetSqlOk() (*string, bool)
GetSqlOk returns a tuple with the Sql field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DbQueryRequest) SetSql(v string)
SetSql sets Sql field to given value.
func (o *DbQueryRequest) GetParams() []interface{}
GetParams returns the Params field if non-nil, zero value otherwise.
func (o *DbQueryRequest) GetParamsOk() (*[]interface{}, bool)
GetParamsOk returns a tuple with the Params field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DbQueryRequest) SetParams(v []interface{})
SetParams sets Params field to given value.
func (o *DbQueryRequest) HasParams() bool
HasParams returns a boolean if a field has been set.