Class TicketRelationResult
Result of a ticket relation operation, indicating success or the reason for failure.
Carrier object for TicketRelationResult. Services for the TicketRelationResult Carrier is available from the Ticket Agent.Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/12.2.0.0")]
public class TicketRelationResult
Constructors
TicketRelationResult()
Default constructor
Declaration
public TicketRelationResult()
See Also
Properties
ErrorMessage
Error message describing why the operation failed, if IsValid is false.
Declaration
[DataMember]
public virtual string ErrorMessage { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
IsValid
True if the operation succeeded; false if it failed.
Declaration
[DataMember]
public virtual bool IsValid { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
RelationError
The reason the operation failed, if IsValid is false.
Declaration
[DataMember]
public virtual TicketRelationError RelationError { get; set; }
Property Value
| Type | Description |
|---|---|
| TicketRelationError |
See Also
SourceTicketId
The id of the source ticket this result applies to.
Declaration
[DataMember]
public virtual int SourceTicketId { 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. |
Overrides
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. |