Class SuggestedAppointmentEntity
Carrier object for SuggestedAppointmentEntity. Services for the SuggestedAppointmentEntity Carrier is available from the Appointment Agent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class SuggestedAppointmentEntity : Carrier
Examples
Get SuggestedAppointmentEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new AppointmentAgent();
var suggestedAppointmentEntity = agent.GetSuggestedAppointmentEntity( 123 );
}
Constructors
SuggestedAppointmentEntity()
Default constructor
Declaration
public SuggestedAppointmentEntity()
See Also
Properties
AssignToMember
Should this appointment be assigned to project member
Declaration
[DataMember]
public virtual bool AssignToMember { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
AutoSuggest
Should this appointment be auto-suggested
Declaration
[DataMember]
public virtual bool AutoSuggest { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
DaysFuture
How many days into the future the appointment should be scheduled
Declaration
[DataMember]
public virtual short DaysFuture { get; set; }
Property Value
| Type | Description |
|---|---|
| short |
See Also
Deleted
0 -> record is active 1 -> record is 'deleted' and should not be shown in lists
Declaration
[DataMember]
public virtual bool Deleted { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
Duration
Duration in minutes of suggested appointment
Declaration
[DataMember]
public virtual TimeSpan Duration { get; set; }
Property Value
| Type | Description |
|---|---|
| TimeSpan |
See Also
IsMilestone
Is this a milestone activity
Declaration
[DataMember]
public virtual bool IsMilestone { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
Name
Item name, visible in Guide
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
ProjectTypeStatusLink
Project type and project status link info
Declaration
[DataMember]
public virtual ProjectTypeStatusLink ProjectTypeStatusLink { get; set; }
Property Value
| Type | Description |
|---|---|
| ProjectTypeStatusLink |
See Also
Rank
Rank, controls rank of non-instantiated items in Guide
Declaration
[DataMember]
public virtual short Rank { get; set; }
Property Value
| Type | Description |
|---|---|
| short |
See Also
SaleTypeStageLink
Sale type and stage link info
Declaration
[DataMember]
public virtual SaleTypeStageLink SaleTypeStageLink { get; set; }
Property Value
| Type | Description |
|---|---|
| SaleTypeStageLink |
See Also
SuggestedAppointmentId
Primary key
Declaration
[DataMember]
public virtual int SuggestedAppointmentId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Text
The suggested text of the new appointment
Declaration
[DataMember]
public virtual string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Tooltip
Tooltip / description
Declaration
[DataMember]
public virtual string Tooltip { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Type
Type of the suggested appointment
Declaration
[DataMember]
public virtual SoTask Type { get; set; }
Property Value
| Type | Description |
|---|---|
| SoTask |
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. |