Name | Type | Description | Notes |
---|---|---|---|
Table | Pointer to string | The name of the table from which the document was deleted | [optional] |
Deleted | Pointer to int32 | Number of documents deleted | [optional] |
Id | Pointer to int64 | The ID of the deleted document. If multiple documents are deleted, the ID of the first deleted document is returned | [optional] |
Found | Pointer to bool | Indicates whether any documents to be deleted were found | [optional] |
Result | Pointer to string | Result of the delete operation, typically 'deleted' | [optional] |
func NewDeleteResponse() *DeleteResponse
NewDeleteResponse instantiates a new DeleteResponse 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 NewDeleteResponseWithDefaults() *DeleteResponse
NewDeleteResponseWithDefaults instantiates a new DeleteResponse 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 *DeleteResponse) GetTable() string
GetTable returns the Table field if non-nil, zero value otherwise.
func (o *DeleteResponse) GetTableOk() (*string, bool)
GetTableOk returns a tuple with the Table field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DeleteResponse) SetTable(v string)
SetTable sets Table field to given value.
func (o *DeleteResponse) HasTable() bool
HasTable returns a boolean if a field has been set.
func (o *DeleteResponse) GetDeleted() int32
GetDeleted returns the Deleted field if non-nil, zero value otherwise.
func (o *DeleteResponse) GetDeletedOk() (*int32, bool)
GetDeletedOk returns a tuple with the Deleted field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DeleteResponse) SetDeleted(v int32)
SetDeleted sets Deleted field to given value.
func (o *DeleteResponse) HasDeleted() bool
HasDeleted returns a boolean if a field has been set.
func (o *DeleteResponse) GetId() int64
GetId returns the Id field if non-nil, zero value otherwise.
func (o *DeleteResponse) GetIdOk() (*int64, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DeleteResponse) SetId(v int64)
SetId sets Id field to given value.
func (o *DeleteResponse) HasId() bool
HasId returns a boolean if a field has been set.
func (o *DeleteResponse) GetFound() bool
GetFound returns the Found field if non-nil, zero value otherwise.
func (o *DeleteResponse) GetFoundOk() (*bool, bool)
GetFoundOk returns a tuple with the Found field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DeleteResponse) SetFound(v bool)
SetFound sets Found field to given value.
func (o *DeleteResponse) HasFound() bool
HasFound returns a boolean if a field has been set.
func (o *DeleteResponse) GetResult() string
GetResult returns the Result field if non-nil, zero value otherwise.
func (o *DeleteResponse) GetResultOk() (*string, 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 *DeleteResponse) SetResult(v string)
SetResult sets Result field to given value.
func (o *DeleteResponse) HasResult() bool
HasResult returns a boolean if a field has been set.