Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 5.02 KB

VDAComponentsSelectionValidationResponseModel.md

File metadata and controls

160 lines (87 loc) · 5.02 KB

VDAComponentsSelectionValidationResponseModel

Properties

Name Type Description Notes
Uid Pointer to int32 Uid of the catalog. [optional]
Id string Id of the machine catalog.
Name string Name of the catalog.
IsValid Pointer to bool Validation result of VDA components selection of the catalog. [optional]
Message Pointer to NullableString Validation message of VDA components selection of the catalog. [optional]

Methods

NewVDAComponentsSelectionValidationResponseModel

func NewVDAComponentsSelectionValidationResponseModel(id string, name string, ) *VDAComponentsSelectionValidationResponseModel

NewVDAComponentsSelectionValidationResponseModel instantiates a new VDAComponentsSelectionValidationResponseModel 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

NewVDAComponentsSelectionValidationResponseModelWithDefaults

func NewVDAComponentsSelectionValidationResponseModelWithDefaults() *VDAComponentsSelectionValidationResponseModel

NewVDAComponentsSelectionValidationResponseModelWithDefaults instantiates a new VDAComponentsSelectionValidationResponseModel 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

GetUid

func (o *VDAComponentsSelectionValidationResponseModel) GetUid() int32

GetUid returns the Uid field if non-nil, zero value otherwise.

GetUidOk

func (o *VDAComponentsSelectionValidationResponseModel) GetUidOk() (*int32, bool)

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

SetUid

func (o *VDAComponentsSelectionValidationResponseModel) SetUid(v int32)

SetUid sets Uid field to given value.

HasUid

func (o *VDAComponentsSelectionValidationResponseModel) HasUid() bool

HasUid returns a boolean if a field has been set.

GetId

func (o *VDAComponentsSelectionValidationResponseModel) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *VDAComponentsSelectionValidationResponseModel) GetIdOk() (*string, bool)

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

SetId

func (o *VDAComponentsSelectionValidationResponseModel) SetId(v string)

SetId sets Id field to given value.

GetName

func (o *VDAComponentsSelectionValidationResponseModel) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *VDAComponentsSelectionValidationResponseModel) GetNameOk() (*string, bool)

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

SetName

func (o *VDAComponentsSelectionValidationResponseModel) SetName(v string)

SetName sets Name field to given value.

GetIsValid

func (o *VDAComponentsSelectionValidationResponseModel) GetIsValid() bool

GetIsValid returns the IsValid field if non-nil, zero value otherwise.

GetIsValidOk

func (o *VDAComponentsSelectionValidationResponseModel) GetIsValidOk() (*bool, bool)

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

SetIsValid

func (o *VDAComponentsSelectionValidationResponseModel) SetIsValid(v bool)

SetIsValid sets IsValid field to given value.

HasIsValid

func (o *VDAComponentsSelectionValidationResponseModel) HasIsValid() bool

HasIsValid returns a boolean if a field has been set.

GetMessage

func (o *VDAComponentsSelectionValidationResponseModel) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *VDAComponentsSelectionValidationResponseModel) GetMessageOk() (*string, bool)

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

SetMessage

func (o *VDAComponentsSelectionValidationResponseModel) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *VDAComponentsSelectionValidationResponseModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

SetMessageNil

func (o *VDAComponentsSelectionValidationResponseModel) SetMessageNil(b bool)

SetMessageNil sets the value for Message to be an explicit nil

UnsetMessage

func (o *VDAComponentsSelectionValidationResponseModel) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

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