Class TicketInfo
A small carrier that contains information about a ticket
Carrier object for TicketInfo. Services for the TicketInfo Carrier is available from the CustomerService Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.6.0.0")]
public class TicketInfo : Carrier
Constructors
TicketInfo()
Default constructor
Declaration
public TicketInfo()
See Also
Properties
CategoryName
The name of the category for the request
Declaration
[DataMember]
public virtual string CategoryName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
ContactName
The name of the contact/company connected to the ticket
Declaration
[DataMember]
public virtual string ContactName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
OwnerName
The name of the owner which the request was assigned to
Declaration
[DataMember]
public virtual string OwnerName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
PersonName
The name of the person/customer connected to the ticket
Declaration
[DataMember]
public virtual string PersonName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
PriorityName
The name of the priority for the request
Declaration
[DataMember]
public virtual string PriorityName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
TicketId
The id of the created ticket
Declaration
[DataMember]
public virtual int TicketId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
TicketUrl
A URL leading directly to the created request. This is a URL ment to be used by a Service user
Declaration
[DataMember]
public virtual string TicketUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Title
The title/subject of the created ticket
Declaration
[DataMember]
public virtual string Title { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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. |