Class TicketRelationEntity
Relationship between two tickets, as described by the TicketRelationDefinition.
Carrier object for TicketRelationEntity. Services for the TicketRelationEntity Carrier is available from the Ticket Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.9.0.0")]
public class TicketRelationEntity : Carrier
Constructors
TicketRelationEntity()
Default constructor
Declaration
public TicketRelationEntity()
See Also
Properties
Comment
Comment for relation
Declaration
[DataMember]
public virtual string Comment { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
DestinationTicketId
Destination ticket in this relation
Declaration
[DataMember]
public virtual int DestinationTicketId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
RelationType
Ticket relation type
Declaration
[DataMember]
public virtual TicketRelationType RelationType { get; set; }
Property Value
| Type | Description |
|---|---|
| TicketRelationType |
See Also
SourceTicketId
Source ticket in this relation
Declaration
[DataMember]
public virtual int SourceTicketId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
TicketRelationId
Primary key
Declaration
[DataMember]
public virtual int TicketRelationId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
| Type | Name | Description |
|---|---|---|
| string | prefix | The line prefix (typically used for indenting) |
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |