// 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 ( "encoding/json" "fmt" "github.com/DataDog/datadog-api-client-go/v2/api/datadog" ) // Role Role object returned by the API. type Role struct { // Attributes of the role. Attributes *RoleAttributes `json:"attributes,omitempty"` // The unique identifier of the role. Id *string `json:"id,omitempty"` // Relationships of the role object returned by the API. Relationships *RoleResponseRelationships `json:"relationships,omitempty"` // Roles type. Type RolesType `json:"type"` // 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{} } // NewRole instantiates a new Role 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 NewRole(typeVar RolesType) *Role { this := Role{} this.Type = typeVar return &this } // NewRoleWithDefaults instantiates a new Role 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 NewRoleWithDefaults() *Role { this := Role{} var typeVar RolesType = ROLESTYPE_ROLES this.Type = typeVar return &this } // GetAttributes returns the Attributes field value if set, zero value otherwise. func (o *Role) GetAttributes() RoleAttributes { if o == nil || o.Attributes == nil { var ret RoleAttributes return ret } return *o.Attributes } // GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *Role) GetAttributesOk() (*RoleAttributes, bool) { if o == nil || o.Attributes == nil { return nil, false } return o.Attributes, true } // HasAttributes returns a boolean if a field has been set. func (o *Role) HasAttributes() bool { return o != nil && o.Attributes != nil } // SetAttributes gets a reference to the given RoleAttributes and assigns it to the Attributes field. func (o *Role) SetAttributes(v RoleAttributes) { o.Attributes = &v } // GetId returns the Id field value if set, zero value otherwise. func (o *Role) GetId() string { if o == nil || o.Id == nil { var ret string return ret } return *o.Id } // GetIdOk returns a tuple with the Id field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *Role) GetIdOk() (*string, bool) { if o == nil || o.Id == nil { return nil, false } return o.Id, true } // HasId returns a boolean if a field has been set. func (o *Role) HasId() bool { return o != nil && o.Id != nil } // SetId gets a reference to the given string and assigns it to the Id field. func (o *Role) SetId(v string) { o.Id = &v } // GetRelationships returns the Relationships field value if set, zero value otherwise. func (o *Role) GetRelationships() RoleResponseRelationships { if o == nil || o.Relationships == nil { var ret RoleResponseRelationships return ret } return *o.Relationships } // GetRelationshipsOk returns a tuple with the Relationships field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *Role) GetRelationshipsOk() (*RoleResponseRelationships, bool) { if o == nil || o.Relationships == nil { return nil, false } return o.Relationships, true } // HasRelationships returns a boolean if a field has been set. func (o *Role) HasRelationships() bool { return o != nil && o.Relationships != nil } // SetRelationships gets a reference to the given RoleResponseRelationships and assigns it to the Relationships field. func (o *Role) SetRelationships(v RoleResponseRelationships) { o.Relationships = &v } // GetType returns the Type field value. func (o *Role) GetType() RolesType { if o == nil { var ret RolesType return ret } return o.Type } // GetTypeOk returns a tuple with the Type field value // and a boolean to check if the value has been set. func (o *Role) GetTypeOk() (*RolesType, bool) { if o == nil { return nil, false } return &o.Type, true } // SetType sets field value. func (o *Role) SetType(v RolesType) { o.Type = v } // MarshalJSON serializes the struct using spec logic. func (o Role) MarshalJSON() ([]byte, error) { toSerialize := map[string]interface{}{} if o.UnparsedObject != nil { return json.Marshal(o.UnparsedObject) } if o.Attributes != nil { toSerialize["attributes"] = o.Attributes } if o.Id != nil { toSerialize["id"] = o.Id } if o.Relationships != nil { toSerialize["relationships"] = o.Relationships } toSerialize["type"] = o.Type for key, value := range o.AdditionalProperties { toSerialize[key] = value } return json.Marshal(toSerialize) } // UnmarshalJSON deserializes the given payload. func (o *Role) UnmarshalJSON(bytes []byte) (err error) { raw := map[string]interface{}{} all := struct { Attributes *RoleAttributes `json:"attributes,omitempty"` Id *string `json:"id,omitempty"` Relationships *RoleResponseRelationships `json:"relationships,omitempty"` Type *RolesType `json:"type"` }{} if err = json.Unmarshal(bytes, &all); err != nil { err = json.Unmarshal(bytes, &raw) if err != nil { return err } o.UnparsedObject = raw return nil } if all.Type == nil { return fmt.Errorf("required field type missing") } additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(bytes, &additionalProperties); err == nil { datadog.DeleteKeys(additionalProperties, &[]string{"attributes", "id", "relationships", "type"}) } else { return err } if v := all.Type; !v.IsValid() { err = json.Unmarshal(bytes, &raw) if err != nil { return err } o.UnparsedObject = raw return nil } if all.Attributes != nil && all.Attributes.UnparsedObject != nil && o.UnparsedObject == nil { err = json.Unmarshal(bytes, &raw) if err != nil { return err } o.UnparsedObject = raw } o.Attributes = all.Attributes o.Id = all.Id if all.Relationships != nil && all.Relationships.UnparsedObject != nil && o.UnparsedObject == nil { err = json.Unmarshal(bytes, &raw) if err != nil { return err } o.UnparsedObject = raw } o.Relationships = all.Relationships o.Type = *all.Type if len(additionalProperties) > 0 { o.AdditionalProperties = additionalProperties } return nil }