Skip to content

Latest commit

 

History

History
198 lines (105 loc) · 5.27 KB

File metadata and controls

198 lines (105 loc) · 5.27 KB

EventElement

Properties

Name Type Description Notes
Type string
Id int64
ComponentTypeId int64
Name string
RelationTypeId int64
Source EventComponent
Target EventComponent
DependencyDirection DependencyDirection

Methods

NewEventElement

func NewEventElement(type_ string, id int64, componentTypeId int64, name string, relationTypeId int64, source EventComponent, target EventComponent, dependencyDirection DependencyDirection, ) *EventElement

NewEventElement instantiates a new EventElement 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

NewEventElementWithDefaults

func NewEventElementWithDefaults() *EventElement

NewEventElementWithDefaults instantiates a new EventElement 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

GetType

func (o *EventElement) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *EventElement) GetTypeOk() (*string, bool)

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

SetType

func (o *EventElement) SetType(v string)

SetType sets Type field to given value.

GetId

func (o *EventElement) GetId() int64

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

GetIdOk

func (o *EventElement) GetIdOk() (*int64, 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 *EventElement) SetId(v int64)

SetId sets Id field to given value.

GetComponentTypeId

func (o *EventElement) GetComponentTypeId() int64

GetComponentTypeId returns the ComponentTypeId field if non-nil, zero value otherwise.

GetComponentTypeIdOk

func (o *EventElement) GetComponentTypeIdOk() (*int64, bool)

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

SetComponentTypeId

func (o *EventElement) SetComponentTypeId(v int64)

SetComponentTypeId sets ComponentTypeId field to given value.

GetName

func (o *EventElement) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetRelationTypeId

func (o *EventElement) GetRelationTypeId() int64

GetRelationTypeId returns the RelationTypeId field if non-nil, zero value otherwise.

GetRelationTypeIdOk

func (o *EventElement) GetRelationTypeIdOk() (*int64, bool)

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

SetRelationTypeId

func (o *EventElement) SetRelationTypeId(v int64)

SetRelationTypeId sets RelationTypeId field to given value.

GetSource

func (o *EventElement) GetSource() EventComponent

GetSource returns the Source field if non-nil, zero value otherwise.

GetSourceOk

func (o *EventElement) GetSourceOk() (*EventComponent, bool)

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

SetSource

func (o *EventElement) SetSource(v EventComponent)

SetSource sets Source field to given value.

GetTarget

func (o *EventElement) GetTarget() EventComponent

GetTarget returns the Target field if non-nil, zero value otherwise.

GetTargetOk

func (o *EventElement) GetTargetOk() (*EventComponent, bool)

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

SetTarget

func (o *EventElement) SetTarget(v EventComponent)

SetTarget sets Target field to given value.

GetDependencyDirection

func (o *EventElement) GetDependencyDirection() DependencyDirection

GetDependencyDirection returns the DependencyDirection field if non-nil, zero value otherwise.

GetDependencyDirectionOk

func (o *EventElement) GetDependencyDirectionOk() (*DependencyDirection, bool)

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

SetDependencyDirection

func (o *EventElement) SetDependencyDirection(v DependencyDirection)

SetDependencyDirection sets DependencyDirection field to given value.

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