-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate client from commit 7b7ec49c of spec repo
- Loading branch information
ci.datadog-api-spec
committed
Dec 20, 2024
1 parent
2a26be6
commit 282e155
Showing
4 changed files
with
283 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. | ||
// This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
// Copyright 2019-Present Datadog, Inc. | ||
|
||
package datadogV2 | ||
|
||
import ( | ||
"github.com/DataDog/datadog-api-client-go/v2/api/datadog" | ||
) | ||
|
||
// JSONAPIErrorItemSource References to the source of the error. | ||
type JSONAPIErrorItemSource struct { | ||
// a string indicating the name of a single request header which caused the error. | ||
Header *string `json:"header,omitempty"` | ||
// A string indicating which URI query parameter caused the error. | ||
Parameter *string `json:"parameter,omitempty"` | ||
// A JSON Pointer to the value in the request document that caused the error. | ||
Pointer *string `json:"pointer,omitempty"` | ||
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct | ||
UnparsedObject map[string]interface{} `json:"-"` | ||
AdditionalProperties map[string]interface{} `json:"-"` | ||
} | ||
|
||
// NewJSONAPIErrorItemSource instantiates a new JSONAPIErrorItemSource 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 NewJSONAPIErrorItemSource() *JSONAPIErrorItemSource { | ||
this := JSONAPIErrorItemSource{} | ||
return &this | ||
} | ||
|
||
// NewJSONAPIErrorItemSourceWithDefaults instantiates a new JSONAPIErrorItemSource 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 NewJSONAPIErrorItemSourceWithDefaults() *JSONAPIErrorItemSource { | ||
this := JSONAPIErrorItemSource{} | ||
return &this | ||
} | ||
|
||
// GetHeader returns the Header field value if set, zero value otherwise. | ||
func (o *JSONAPIErrorItemSource) GetHeader() string { | ||
if o == nil || o.Header == nil { | ||
var ret string | ||
return ret | ||
} | ||
return *o.Header | ||
} | ||
|
||
// GetHeaderOk returns a tuple with the Header field value if set, nil otherwise | ||
// and a boolean to check if the value has been set. | ||
func (o *JSONAPIErrorItemSource) GetHeaderOk() (*string, bool) { | ||
if o == nil || o.Header == nil { | ||
return nil, false | ||
} | ||
return o.Header, true | ||
} | ||
|
||
// HasHeader returns a boolean if a field has been set. | ||
func (o *JSONAPIErrorItemSource) HasHeader() bool { | ||
return o != nil && o.Header != nil | ||
} | ||
|
||
// SetHeader gets a reference to the given string and assigns it to the Header field. | ||
func (o *JSONAPIErrorItemSource) SetHeader(v string) { | ||
o.Header = &v | ||
} | ||
|
||
// GetParameter returns the Parameter field value if set, zero value otherwise. | ||
func (o *JSONAPIErrorItemSource) GetParameter() string { | ||
if o == nil || o.Parameter == nil { | ||
var ret string | ||
return ret | ||
} | ||
return *o.Parameter | ||
} | ||
|
||
// GetParameterOk returns a tuple with the Parameter field value if set, nil otherwise | ||
// and a boolean to check if the value has been set. | ||
func (o *JSONAPIErrorItemSource) GetParameterOk() (*string, bool) { | ||
if o == nil || o.Parameter == nil { | ||
return nil, false | ||
} | ||
return o.Parameter, true | ||
} | ||
|
||
// HasParameter returns a boolean if a field has been set. | ||
func (o *JSONAPIErrorItemSource) HasParameter() bool { | ||
return o != nil && o.Parameter != nil | ||
} | ||
|
||
// SetParameter gets a reference to the given string and assigns it to the Parameter field. | ||
func (o *JSONAPIErrorItemSource) SetParameter(v string) { | ||
o.Parameter = &v | ||
} | ||
|
||
// GetPointer returns the Pointer field value if set, zero value otherwise. | ||
func (o *JSONAPIErrorItemSource) GetPointer() string { | ||
if o == nil || o.Pointer == nil { | ||
var ret string | ||
return ret | ||
} | ||
return *o.Pointer | ||
} | ||
|
||
// GetPointerOk returns a tuple with the Pointer field value if set, nil otherwise | ||
// and a boolean to check if the value has been set. | ||
func (o *JSONAPIErrorItemSource) GetPointerOk() (*string, bool) { | ||
if o == nil || o.Pointer == nil { | ||
return nil, false | ||
} | ||
return o.Pointer, true | ||
} | ||
|
||
// HasPointer returns a boolean if a field has been set. | ||
func (o *JSONAPIErrorItemSource) HasPointer() bool { | ||
return o != nil && o.Pointer != nil | ||
} | ||
|
||
// SetPointer gets a reference to the given string and assigns it to the Pointer field. | ||
func (o *JSONAPIErrorItemSource) SetPointer(v string) { | ||
o.Pointer = &v | ||
} | ||
|
||
// MarshalJSON serializes the struct using spec logic. | ||
func (o JSONAPIErrorItemSource) MarshalJSON() ([]byte, error) { | ||
toSerialize := map[string]interface{}{} | ||
if o.UnparsedObject != nil { | ||
return datadog.Marshal(o.UnparsedObject) | ||
} | ||
if o.Header != nil { | ||
toSerialize["header"] = o.Header | ||
} | ||
if o.Parameter != nil { | ||
toSerialize["parameter"] = o.Parameter | ||
} | ||
if o.Pointer != nil { | ||
toSerialize["pointer"] = o.Pointer | ||
} | ||
|
||
for key, value := range o.AdditionalProperties { | ||
toSerialize[key] = value | ||
} | ||
return datadog.Marshal(toSerialize) | ||
} | ||
|
||
// UnmarshalJSON deserializes the given payload. | ||
func (o *JSONAPIErrorItemSource) UnmarshalJSON(bytes []byte) (err error) { | ||
all := struct { | ||
Header *string `json:"header,omitempty"` | ||
Parameter *string `json:"parameter,omitempty"` | ||
Pointer *string `json:"pointer,omitempty"` | ||
}{} | ||
if err = datadog.Unmarshal(bytes, &all); err != nil { | ||
return datadog.Unmarshal(bytes, &o.UnparsedObject) | ||
} | ||
additionalProperties := make(map[string]interface{}) | ||
if err = datadog.Unmarshal(bytes, &additionalProperties); err == nil { | ||
datadog.DeleteKeys(additionalProperties, &[]string{"header", "parameter", "pointer"}) | ||
} else { | ||
return err | ||
} | ||
o.Header = all.Header | ||
o.Parameter = all.Parameter | ||
o.Pointer = all.Pointer | ||
|
||
if len(additionalProperties) > 0 { | ||
o.AdditionalProperties = additionalProperties | ||
} | ||
|
||
return nil | ||
} |