Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 5.11 KB

MerakiOrganization.md

File metadata and controls

160 lines (87 loc) · 5.11 KB

MerakiOrganization

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 "meraki.Organization"]
ObjectType string The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to "meraki.Organization"]
Name Pointer to string The Meraki organization name. [optional] [readonly]
OrganizationId Pointer to string The Meraki organization id. [optional] [readonly]
RegisteredDevice Pointer to NullableAssetDeviceRegistrationRelationship [optional]

Methods

NewMerakiOrganization

func NewMerakiOrganization(classId string, objectType string, ) *MerakiOrganization

NewMerakiOrganization instantiates a new MerakiOrganization 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

NewMerakiOrganizationWithDefaults

func NewMerakiOrganizationWithDefaults() *MerakiOrganization

NewMerakiOrganizationWithDefaults instantiates a new MerakiOrganization 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 *MerakiOrganization) GetClassId() string

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

GetClassIdOk

func (o *MerakiOrganization) 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 *MerakiOrganization) SetClassId(v string)

SetClassId sets ClassId field to given value.

GetObjectType

func (o *MerakiOrganization) GetObjectType() string

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

GetObjectTypeOk

func (o *MerakiOrganization) 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 *MerakiOrganization) SetObjectType(v string)

SetObjectType sets ObjectType field to given value.

GetName

func (o *MerakiOrganization) GetName() string

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

GetNameOk

func (o *MerakiOrganization) 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 *MerakiOrganization) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *MerakiOrganization) HasName() bool

HasName returns a boolean if a field has been set.

GetOrganizationId

func (o *MerakiOrganization) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field if non-nil, zero value otherwise.

GetOrganizationIdOk

func (o *MerakiOrganization) GetOrganizationIdOk() (*string, bool)

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

SetOrganizationId

func (o *MerakiOrganization) SetOrganizationId(v string)

SetOrganizationId sets OrganizationId field to given value.

HasOrganizationId

func (o *MerakiOrganization) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

GetRegisteredDevice

func (o *MerakiOrganization) GetRegisteredDevice() AssetDeviceRegistrationRelationship

GetRegisteredDevice returns the RegisteredDevice field if non-nil, zero value otherwise.

GetRegisteredDeviceOk

func (o *MerakiOrganization) GetRegisteredDeviceOk() (*AssetDeviceRegistrationRelationship, bool)

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

SetRegisteredDevice

func (o *MerakiOrganization) SetRegisteredDevice(v AssetDeviceRegistrationRelationship)

SetRegisteredDevice sets RegisteredDevice field to given value.

HasRegisteredDevice

func (o *MerakiOrganization) HasRegisteredDevice() bool

HasRegisteredDevice returns a boolean if a field has been set.

SetRegisteredDeviceNil

func (o *MerakiOrganization) SetRegisteredDeviceNil(b bool)

SetRegisteredDeviceNil sets the value for RegisteredDevice to be an explicit nil

UnsetRegisteredDevice

func (o *MerakiOrganization) UnsetRegisteredDevice()

UnsetRegisteredDevice ensures that no value is present for RegisteredDevice, not even an explicit nil

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