Skip to content

Latest commit

 

History

History
87 lines (48 loc) · 2.39 KB

BasicDomainModel.md

File metadata and controls

87 lines (48 loc) · 2.39 KB

BasicDomainModel

Properties

Name Type Description Notes
Id string
ObjectType Pointer to interface{} [optional]

Methods

NewBasicDomainModel

func NewBasicDomainModel(id string, ) *BasicDomainModel

NewBasicDomainModel instantiates a new BasicDomainModel 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

NewBasicDomainModelWithDefaults

func NewBasicDomainModelWithDefaults() *BasicDomainModel

NewBasicDomainModelWithDefaults instantiates a new BasicDomainModel 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

GetId

func (o *BasicDomainModel) GetId() string

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

GetIdOk

func (o *BasicDomainModel) 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 *BasicDomainModel) SetId(v string)

SetId sets Id field to given value.

GetObjectType

func (o *BasicDomainModel) GetObjectType() interface{}

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

GetObjectTypeOk

func (o *BasicDomainModel) GetObjectTypeOk() (*interface{}, 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 *BasicDomainModel) SetObjectType(v interface{})

SetObjectType sets ObjectType field to given value.

HasObjectType

func (o *BasicDomainModel) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

SetObjectTypeNil

func (o *BasicDomainModel) SetObjectTypeNil(b bool)

SetObjectTypeNil sets the value for ObjectType to be an explicit nil

UnsetObjectType

func (o *BasicDomainModel) UnsetObjectType()

UnsetObjectType ensures that no value is present for ObjectType, not even an explicit nil

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