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 "asset.CustomerInformation"] |
ObjectType | string | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "asset.CustomerInformation"] |
Address | Pointer to NullableAssetAddressInformation | [optional] | |
Id | Pointer to string | Unique identifier for an end customer. This identifier is allocated by Cisco. | [optional] [readonly] |
Name | Pointer to string | Name as per the information provided by the user. | [optional] [readonly] |
func NewAssetCustomerInformation(classId string, objectType string, ) *AssetCustomerInformation
NewAssetCustomerInformation instantiates a new AssetCustomerInformation 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 NewAssetCustomerInformationWithDefaults() *AssetCustomerInformation
NewAssetCustomerInformationWithDefaults instantiates a new AssetCustomerInformation 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 *AssetCustomerInformation) GetClassId() string
GetClassId returns the ClassId field if non-nil, zero value otherwise.
func (o *AssetCustomerInformation) 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.
func (o *AssetCustomerInformation) SetClassId(v string)
SetClassId sets ClassId field to given value.
func (o *AssetCustomerInformation) GetObjectType() string
GetObjectType returns the ObjectType field if non-nil, zero value otherwise.
func (o *AssetCustomerInformation) 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.
func (o *AssetCustomerInformation) SetObjectType(v string)
SetObjectType sets ObjectType field to given value.
func (o *AssetCustomerInformation) GetAddress() AssetAddressInformation
GetAddress returns the Address field if non-nil, zero value otherwise.
func (o *AssetCustomerInformation) GetAddressOk() (*AssetAddressInformation, bool)
GetAddressOk returns a tuple with the Address field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AssetCustomerInformation) SetAddress(v AssetAddressInformation)
SetAddress sets Address field to given value.
func (o *AssetCustomerInformation) HasAddress() bool
HasAddress returns a boolean if a field has been set.
func (o *AssetCustomerInformation) SetAddressNil(b bool)
SetAddressNil sets the value for Address to be an explicit nil
func (o *AssetCustomerInformation) UnsetAddress()
UnsetAddress ensures that no value is present for Address, not even an explicit nil
func (o *AssetCustomerInformation) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *AssetCustomerInformation) 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.
func (o *AssetCustomerInformation) SetId(v string)
SetId sets Id field to given value.
func (o *AssetCustomerInformation) HasId() bool
HasId returns a boolean if a field has been set.
func (o *AssetCustomerInformation) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *AssetCustomerInformation) 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 *AssetCustomerInformation) SetName(v string)
SetName sets Name field to given value.
func (o *AssetCustomerInformation) HasName() bool
HasName returns a boolean if a field has been set.