Skip to main content

RtQueryRowDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Represents an entity row in a query result

public class RtQueryRowDto : GraphQlDto

Inheritance ObjectGraphQlDtoRtQueryRowDto

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>

CkTypeId

Gets or sets the type id of the entity

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

Property Value

CkId<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 ulong RtVersion { get; set; }

Property Value

UInt64

Cells

Gets or sets the cells of the entity row

public IList<RtQueryCellDto> Cells { get; set; }

Property Value

IList<RtQueryCellDto>

UserContext

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

public object UserContext { get; set; }

Property Value

Object

Constructors

RtQueryRowDto()

public RtQueryRowDto()