fleet-memory/hindsight-clients/go/model_delete_response.go
Nicolò Boschi 27cb7e43e0 Release v0.5.0
- Update version to 0.5.0 in all components
- Regenerate OpenAPI spec and client SDKs
- Python packages: hindsight-api, hindsight-dev, hindsight-all, hindsight-embed
- Python client: hindsight-clients/python
- TypeScript client: hindsight-clients/typescript
- Rust CLI: hindsight-cli
- Control Plane: hindsight-control-plane
- Helm chart
- Create documentation version-0.5
2026-04-08 17:56:47 +02:00

250 lines
6.5 KiB
Go

/*
Hindsight HTTP API
HTTP API for Hindsight
API version: 0.5.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package hindsight
import (
"encoding/json"
"bytes"
"fmt"
)
// checks if the DeleteResponse type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &DeleteResponse{}
// DeleteResponse Response model for delete operations.
type DeleteResponse struct {
Success bool `json:"success"`
Message NullableString `json:"message,omitempty"`
DeletedCount NullableInt32 `json:"deleted_count,omitempty"`
}
type _DeleteResponse 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 NewDeleteResponse(success bool) *DeleteResponse {
this := DeleteResponse{}
this.Success = success
return &this
}
// 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 NewDeleteResponseWithDefaults() *DeleteResponse {
this := DeleteResponse{}
return &this
}
// GetSuccess returns the Success field value
func (o *DeleteResponse) GetSuccess() bool {
if o == nil {
var ret bool
return ret
}
return o.Success
}
// GetSuccessOk returns a tuple with the Success field value
// and a boolean to check if the value has been set.
func (o *DeleteResponse) GetSuccessOk() (*bool, bool) {
if o == nil {
return nil, false
}
return &o.Success, true
}
// SetSuccess sets field value
func (o *DeleteResponse) SetSuccess(v bool) {
o.Success = v
}
// GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *DeleteResponse) GetMessage() string {
if o == nil || IsNil(o.Message.Get()) {
var ret string
return ret
}
return *o.Message.Get()
}
// GetMessageOk returns a tuple with the Message field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *DeleteResponse) GetMessageOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Message.Get(), o.Message.IsSet()
}
// HasMessage returns a boolean if a field has been set.
func (o *DeleteResponse) HasMessage() bool {
if o != nil && o.Message.IsSet() {
return true
}
return false
}
// SetMessage gets a reference to the given NullableString and assigns it to the Message field.
func (o *DeleteResponse) SetMessage(v string) {
o.Message.Set(&v)
}
// SetMessageNil sets the value for Message to be an explicit nil
func (o *DeleteResponse) SetMessageNil() {
o.Message.Set(nil)
}
// UnsetMessage ensures that no value is present for Message, not even an explicit nil
func (o *DeleteResponse) UnsetMessage() {
o.Message.Unset()
}
// GetDeletedCount returns the DeletedCount field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *DeleteResponse) GetDeletedCount() int32 {
if o == nil || IsNil(o.DeletedCount.Get()) {
var ret int32
return ret
}
return *o.DeletedCount.Get()
}
// GetDeletedCountOk returns a tuple with the DeletedCount field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *DeleteResponse) GetDeletedCountOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.DeletedCount.Get(), o.DeletedCount.IsSet()
}
// HasDeletedCount returns a boolean if a field has been set.
func (o *DeleteResponse) HasDeletedCount() bool {
if o != nil && o.DeletedCount.IsSet() {
return true
}
return false
}
// SetDeletedCount gets a reference to the given NullableInt32 and assigns it to the DeletedCount field.
func (o *DeleteResponse) SetDeletedCount(v int32) {
o.DeletedCount.Set(&v)
}
// SetDeletedCountNil sets the value for DeletedCount to be an explicit nil
func (o *DeleteResponse) SetDeletedCountNil() {
o.DeletedCount.Set(nil)
}
// UnsetDeletedCount ensures that no value is present for DeletedCount, not even an explicit nil
func (o *DeleteResponse) UnsetDeletedCount() {
o.DeletedCount.Unset()
}
func (o DeleteResponse) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o DeleteResponse) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["success"] = o.Success
if o.Message.IsSet() {
toSerialize["message"] = o.Message.Get()
}
if o.DeletedCount.IsSet() {
toSerialize["deleted_count"] = o.DeletedCount.Get()
}
return toSerialize, nil
}
func (o *DeleteResponse) UnmarshalJSON(data []byte) (err error) {
// This validates that all required properties are included in the JSON object
// by unmarshalling the object into a generic map with string keys and checking
// that every required field exists as a key in the generic map.
requiredProperties := []string{
"success",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(data, &allProperties)
if err != nil {
return err;
}
for _, requiredProperty := range(requiredProperties) {
if _, exists := allProperties[requiredProperty]; !exists {
return fmt.Errorf("no value given for required property %v", requiredProperty)
}
}
varDeleteResponse := _DeleteResponse{}
decoder := json.NewDecoder(bytes.NewReader(data))
decoder.DisallowUnknownFields()
err = decoder.Decode(&varDeleteResponse)
if err != nil {
return err
}
*o = DeleteResponse(varDeleteResponse)
return err
}
type NullableDeleteResponse struct {
value *DeleteResponse
isSet bool
}
func (v NullableDeleteResponse) Get() *DeleteResponse {
return v.value
}
func (v *NullableDeleteResponse) Set(val *DeleteResponse) {
v.value = val
v.isSet = true
}
func (v NullableDeleteResponse) IsSet() bool {
return v.isSet
}
func (v *NullableDeleteResponse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableDeleteResponse(val *DeleteResponse) *NullableDeleteResponse {
return &NullableDeleteResponse{value: val, isSet: true}
}
func (v NullableDeleteResponse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableDeleteResponse) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}