Skip to main content

StreamDataEntityDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Represents a stream data entity

public class StreamDataEntityDto : GraphQlDto

Inheritance ObjectGraphQlDtoStreamDataEntityDto

Properties

TimeStamp

Gets or sets the timestamp of the entity

public DateTime TimeStamp { get; set; }

Property Value

DateTime

RtId

Gets or sets the id of the entity

public OctoObjectId RtId { get; set; }

Property Value

OctoObjectId

CkTypeId

Gets or sets the type id of the entity

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

Property Value

CkId<CkTypeId>

RtWellKnownName

The Well known name of the entity

public string RtWellKnownName { get; set; }

Property Value

String

RtCreationDateTime

The creation date time of the entity

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

Property Value

Nullable<DateTime>

RtChangedDateTime

The last changed date time of the entity

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

Property Value

Nullable<DateTime>

Attributes

Gets or sets the properties of the entity

public IDictionary<string, object> Attributes { get; set; }

Property Value

IDictionary<String, Object>

UserContext

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

public object UserContext { get; set; }

Property Value

Object

Constructors

StreamDataEntityDto()

public StreamDataEntityDto()