Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.73 KB

ChassisConfigResultEntry.md

File metadata and controls

108 lines (59 loc) · 3.73 KB

ChassisConfigResultEntry

Properties

Name Type Description Notes
ClassId string The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to "chassis.ConfigResultEntry"]
ObjectType string The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to "chassis.ConfigResultEntry"]
ConfigResult Pointer to NullableChassisConfigResultRelationship [optional]

Methods

NewChassisConfigResultEntry

func NewChassisConfigResultEntry(classId string, objectType string, ) *ChassisConfigResultEntry

NewChassisConfigResultEntry instantiates a new ChassisConfigResultEntry 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

NewChassisConfigResultEntryWithDefaults

func NewChassisConfigResultEntryWithDefaults() *ChassisConfigResultEntry

NewChassisConfigResultEntryWithDefaults instantiates a new ChassisConfigResultEntry 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

GetClassId

func (o *ChassisConfigResultEntry) GetClassId() string

GetClassId returns the ClassId field if non-nil, zero value otherwise.

GetClassIdOk

func (o *ChassisConfigResultEntry) GetClassIdOk() (*string, bool)

GetClassIdOk returns a tuple with the ClassId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetClassId

func (o *ChassisConfigResultEntry) SetClassId(v string)

SetClassId sets ClassId field to given value.

GetObjectType

func (o *ChassisConfigResultEntry) GetObjectType() string

GetObjectType returns the ObjectType field if non-nil, zero value otherwise.

GetObjectTypeOk

func (o *ChassisConfigResultEntry) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetObjectType

func (o *ChassisConfigResultEntry) SetObjectType(v string)

SetObjectType sets ObjectType field to given value.

GetConfigResult

func (o *ChassisConfigResultEntry) GetConfigResult() ChassisConfigResultRelationship

GetConfigResult returns the ConfigResult field if non-nil, zero value otherwise.

GetConfigResultOk

func (o *ChassisConfigResultEntry) GetConfigResultOk() (*ChassisConfigResultRelationship, bool)

GetConfigResultOk returns a tuple with the ConfigResult field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetConfigResult

func (o *ChassisConfigResultEntry) SetConfigResult(v ChassisConfigResultRelationship)

SetConfigResult sets ConfigResult field to given value.

HasConfigResult

func (o *ChassisConfigResultEntry) HasConfigResult() bool

HasConfigResult returns a boolean if a field has been set.

SetConfigResultNil

func (o *ChassisConfigResultEntry) SetConfigResultNil(b bool)

SetConfigResultNil sets the value for ConfigResult to be an explicit nil

UnsetConfigResult

func (o *ChassisConfigResultEntry) UnsetConfigResult()

UnsetConfigResult ensures that no value is present for ConfigResult, not even an explicit nil

[Back to Model list] [Back to API list] [Back to README]