| Name | Type | Description | Notes |
|---|---|---|---|
| Family | DeviceFactsOSFamily | ||
| Name | Pointer to string | Operating System name, such as 'Server 2022' or 'Ubuntu' | [optional] |
| Version | Pointer to string | Operating System version, must always be the version number but may contain build name | [optional] |
| Arch | Pointer to string | [optional] |
func NewOperatingSystem(family DeviceFactsOSFamily, ) *OperatingSystem
NewOperatingSystem instantiates a new OperatingSystem 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 NewOperatingSystemWithDefaults() *OperatingSystem
NewOperatingSystemWithDefaults instantiates a new OperatingSystem 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 (o *OperatingSystem) GetFamily() DeviceFactsOSFamily
GetFamily returns the Family field if non-nil, zero value otherwise.
func (o *OperatingSystem) GetFamilyOk() (*DeviceFactsOSFamily, bool)
GetFamilyOk returns a tuple with the Family field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OperatingSystem) SetFamily(v DeviceFactsOSFamily)
SetFamily sets Family field to given value.
func (o *OperatingSystem) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *OperatingSystem) 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.
func (o *OperatingSystem) SetName(v string)
SetName sets Name field to given value.
func (o *OperatingSystem) HasName() bool
HasName returns a boolean if a field has been set.
func (o *OperatingSystem) GetVersion() string
GetVersion returns the Version field if non-nil, zero value otherwise.
func (o *OperatingSystem) GetVersionOk() (*string, bool)
GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OperatingSystem) SetVersion(v string)
SetVersion sets Version field to given value.
func (o *OperatingSystem) HasVersion() bool
HasVersion returns a boolean if a field has been set.
func (o *OperatingSystem) GetArch() string
GetArch returns the Arch field if non-nil, zero value otherwise.
func (o *OperatingSystem) GetArchOk() (*string, bool)
GetArchOk returns a tuple with the Arch field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OperatingSystem) SetArch(v string)
SetArch sets Arch field to given value.
func (o *OperatingSystem) HasArch() bool
HasArch returns a boolean if a field has been set.