-
Notifications
You must be signed in to change notification settings - Fork 58
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 3eee7a12 of spec repo
- Loading branch information
ci.datadog-api-spec
committed
Jun 14, 2022
1 parent
f495b6d
commit 4291ce1
Showing
13 changed files
with
442 additions
and
35 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,102 @@ | ||
// 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 datadog | ||
|
||
import ( | ||
"encoding/json" | ||
) | ||
|
||
// OrgDowngradedResponse Status of downgrade | ||
type OrgDowngradedResponse struct { | ||
// Information pertaining to the downgraded child organization. | ||
Message *string `json:"message,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{} | ||
} | ||
|
||
// NewOrgDowngradedResponse instantiates a new OrgDowngradedResponse 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 NewOrgDowngradedResponse() *OrgDowngradedResponse { | ||
this := OrgDowngradedResponse{} | ||
return &this | ||
} | ||
|
||
// NewOrgDowngradedResponseWithDefaults instantiates a new OrgDowngradedResponse 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 NewOrgDowngradedResponseWithDefaults() *OrgDowngradedResponse { | ||
this := OrgDowngradedResponse{} | ||
return &this | ||
} | ||
|
||
// GetMessage returns the Message field value if set, zero value otherwise. | ||
func (o *OrgDowngradedResponse) GetMessage() string { | ||
if o == nil || o.Message == nil { | ||
var ret string | ||
return ret | ||
} | ||
return *o.Message | ||
} | ||
|
||
// GetMessageOk returns a tuple with the Message field value if set, nil otherwise | ||
// and a boolean to check if the value has been set. | ||
func (o *OrgDowngradedResponse) GetMessageOk() (*string, bool) { | ||
if o == nil || o.Message == nil { | ||
return nil, false | ||
} | ||
return o.Message, true | ||
} | ||
|
||
// HasMessage returns a boolean if a field has been set. | ||
func (o *OrgDowngradedResponse) HasMessage() bool { | ||
if o != nil && o.Message != nil { | ||
return true | ||
} | ||
|
||
return false | ||
} | ||
|
||
// SetMessage gets a reference to the given string and assigns it to the Message field. | ||
func (o *OrgDowngradedResponse) SetMessage(v string) { | ||
o.Message = &v | ||
} | ||
|
||
// MarshalJSON serializes the struct using spec logic. | ||
func (o OrgDowngradedResponse) MarshalJSON() ([]byte, error) { | ||
toSerialize := map[string]interface{}{} | ||
if o.UnparsedObject != nil { | ||
return json.Marshal(o.UnparsedObject) | ||
} | ||
if o.Message != nil { | ||
toSerialize["message"] = o.Message | ||
} | ||
|
||
for key, value := range o.AdditionalProperties { | ||
toSerialize[key] = value | ||
} | ||
return json.Marshal(toSerialize) | ||
} | ||
|
||
// UnmarshalJSON deserializes the given payload. | ||
func (o *OrgDowngradedResponse) UnmarshalJSON(bytes []byte) (err error) { | ||
raw := map[string]interface{}{} | ||
all := struct { | ||
Message *string `json:"message,omitempty"` | ||
}{} | ||
err = json.Unmarshal(bytes, &all) | ||
if err != nil { | ||
err = json.Unmarshal(bytes, &raw) | ||
if err != nil { | ||
return err | ||
} | ||
o.UnparsedObject = raw | ||
return nil | ||
} | ||
o.Message = all.Message | ||
return nil | ||
} |
Oops, something went wrong.