Show / Hide Table of Contents

Class SuggestedAppointment

Carrier object for SuggestedAppointment. Services for the SuggestedAppointment Carrier is available from the Appointment Agent.

Inheritance
object
SuggestedAppointment
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class SuggestedAppointment : Carrier
Examples

Get SuggestedAppointment 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new AppointmentAgent();
   var suggestedAppointment = agent.GetSuggestedAppointment( 123 );
}

Constructors

SuggestedAppointment()

Default constructor

Declaration
public SuggestedAppointment()
See Also
IAppointmentAgent

Properties

Associate

The owner of the suggested activity. Always the same as the sales owner.

Declaration
[DataMember]
public virtual Associate Associate { get; set; }
Property Value
Type Description
Associate
See Also
IAppointmentAgent

AutoSuggest

Should this appointment be auto-suggested

Declaration
[DataMember]
public virtual short AutoSuggest { get; set; }
Property Value
Type Description
short
See Also
IAppointmentAgent

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
IAppointmentAgent

Deleted

0 -> record is active 1 -> record is 'deleted' and should not be shown in lists

Declaration
[DataMember]
public virtual short Deleted { get; set; }
Property Value
Type Description
short
See Also
IAppointmentAgent

Duration

Duration in minutes of suggested appointment

Declaration
[DataMember]
public virtual short Duration { get; set; }
Property Value
Type Description
short
See Also
IAppointmentAgent

Name

Item name, visible in Guide

Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type Description
string
See Also
IAppointmentAgent

ProjectTypeStatusLinkId

Link to projectTypeStatusLink, the anchor for project guide items. Either this OR saleAnchorId should be set, not both at the same time.

Declaration
[DataMember]
public virtual int ProjectTypeStatusLinkId { get; set; }
Property Value
Type Description
int
See Also
IAppointmentAgent

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
IAppointmentAgent

RegisteredAssociateId

Registered by whom

Declaration
[DataMember]
public virtual int RegisteredAssociateId { get; set; }
Property Value
Type Description
int
See Also
IAppointmentAgent

SaleTypeStageLinkId

Link to saleTypeStageLink, the anchor for sale guide items. Either this OR projectAnchorId should be set, not both at the same time.

Declaration
[DataMember]
public virtual int SaleTypeStageLinkId { get; set; }
Property Value
Type Description
int
See Also
IAppointmentAgent

SuggestedAppointmentId

Primary key

Declaration
[DataMember]
public virtual int SuggestedAppointmentId { get; set; }
Property Value
Type Description
int
See Also
IAppointmentAgent

TaskId

Type of the suggested appointment

Declaration
[DataMember]
public virtual int TaskId { get; set; }
Property Value
Type Description
int
See Also
IAppointmentAgent

Text

The suggested text of the new appointment

Declaration
[DataMember]
public virtual string Text { get; set; }
Property Value
Type Description
string
See Also
IAppointmentAgent

Tooltip

Tooltip / description

Declaration
[DataMember]
public virtual string Tooltip { get; set; }
Property Value
Type Description
string
See Also
IAppointmentAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IAppointmentAgent

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.

See Also
IAppointmentAgent

See Also

IAppointmentAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top