fleet-memory/hindsight-clients/go/model_update_document_request.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

127 lines
3.3 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"
)
// checks if the UpdateDocumentRequest type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &UpdateDocumentRequest{}
// UpdateDocumentRequest Request model for updating a document's mutable fields.
type UpdateDocumentRequest struct {
Tags []string `json:"tags,omitempty"`
}
// NewUpdateDocumentRequest instantiates a new UpdateDocumentRequest 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 NewUpdateDocumentRequest() *UpdateDocumentRequest {
this := UpdateDocumentRequest{}
return &this
}
// NewUpdateDocumentRequestWithDefaults instantiates a new UpdateDocumentRequest 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 NewUpdateDocumentRequestWithDefaults() *UpdateDocumentRequest {
this := UpdateDocumentRequest{}
return &this
}
// GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *UpdateDocumentRequest) GetTags() []string {
if o == nil {
var ret []string
return ret
}
return o.Tags
}
// GetTagsOk returns a tuple with the Tags 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 *UpdateDocumentRequest) GetTagsOk() ([]string, bool) {
if o == nil || IsNil(o.Tags) {
return nil, false
}
return o.Tags, true
}
// HasTags returns a boolean if a field has been set.
func (o *UpdateDocumentRequest) HasTags() bool {
if o != nil && !IsNil(o.Tags) {
return true
}
return false
}
// SetTags gets a reference to the given []string and assigns it to the Tags field.
func (o *UpdateDocumentRequest) SetTags(v []string) {
o.Tags = v
}
func (o UpdateDocumentRequest) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o UpdateDocumentRequest) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if o.Tags != nil {
toSerialize["tags"] = o.Tags
}
return toSerialize, nil
}
type NullableUpdateDocumentRequest struct {
value *UpdateDocumentRequest
isSet bool
}
func (v NullableUpdateDocumentRequest) Get() *UpdateDocumentRequest {
return v.value
}
func (v *NullableUpdateDocumentRequest) Set(val *UpdateDocumentRequest) {
v.value = val
v.isSet = true
}
func (v NullableUpdateDocumentRequest) IsSet() bool {
return v.isSet
}
func (v *NullableUpdateDocumentRequest) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableUpdateDocumentRequest(val *UpdateDocumentRequest) *NullableUpdateDocumentRequest {
return &NullableUpdateDocumentRequest{value: val, isSet: true}
}
func (v NullableUpdateDocumentRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableUpdateDocumentRequest) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}