Skip to main content

Class TicketRelationEntity

Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for TicketRelationEntity. Relationship between two tickets, as described by the TicketRelationDefinition.

Inheritance

objectCarrierTicketRelationEntity

Inherited Members

Carrier.TableRight, Carrier.FieldProperties, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Examples

Get TicketRelationEntity 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new TicketAgent(configuration);
var ticketRelationEntity = agent.GetTicketRelationEntity( 123 );

Constructors

TicketRelationEntity()

Default constructor - defaults any enum props to 0.

Properties

Comment

Comment for relation

Property Value

string

DestinationTicketId

Destination ticket in this relation

Property Value

int

RelationType

The type of relation between the two tickets. NULL if unknown enum value.

Property Value

TicketRelationType?

See Also

TicketRelationEntity.RelationType_String

RelationType_String

The type of relation between the two tickets. Raw string enum value.

Property Value

string

See Also

TicketRelationEntity.RelationType

SourceTicketId

Source ticket in this relation

Property Value

int

TicketRelationId

Primary key

Property Value

int

See Also

TicketAgent