Skip to main content

RtEntityDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Base class for all runtime entity DTOs

public class RtEntityDto : RtTypeWithAttributesDto

Inheritance ObjectGraphQlDtoRtTypeWithAttributesDtoRtEntityDto

Properties

RtId

Gets or sets the id of the entity

public OctoObjectId RtId { get; set; }

Property Value

OctoObjectId

RtCreationDateTime

Returns the creation date time

public Nullable<DateTime> RtCreationDateTime { get; set; }

Property Value

Nullable<DateTime>

RtChangedDateTime

Returns the last change date time

public Nullable<DateTime> RtChangedDateTime { get; set; }

Property Value

Nullable<DateTime>

RtArchivedDateTime

Returns the time the entity was archived

public Nullable<DateTime> RtArchivedDateTime { get; set; }

Property Value

Nullable<DateTime>

CkTypeId

Gets or sets the type id of the entity

public RtCkId<CkTypeId> CkTypeId { get; set; }

Property Value

RtCkId<CkTypeId>

RtWellKnownName

Gets or sets the well known name of the entity

public string RtWellKnownName { get; set; }

Property Value

String

RtVersion

Gets or sets the version of the entity

public Nullable<ulong> RtVersion { get; set; }

Property Value

Nullable<UInt64>

RtState

Gets or sets the state of the entity

public Nullable<RtState> RtState { get; set; }

Property Value

Nullable<RtState>

Attributes

Gets or sets the attributes of the type

public IList<RtEntityAttributeDto> Attributes { get; set; }

Property Value

IList<RtEntityAttributeDto>

UserContext

A user context object that can be used to transport user specific data

public object UserContext { get; set; }

Property Value

Object

Constructors

RtEntityDto()

public RtEntityDto()