Class AppointmentSyncData
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData 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.1.0.0")]
public class AppointmentSyncData : Carrier
Constructors
AppointmentSyncData()
Default constructor
Declaration
public AppointmentSyncData()
See Also
Properties
AlarmTime
Date and time at which to show alarm
Declaration
[DataMember]
public virtual DateTime AlarmTime { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
AppointmentId
Primary key
Declaration
[DataMember]
public virtual int AppointmentId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
AppointmentText
The appointment's textbox; holds a descriptive text about the appointment. Filled out by the user.
Declaration
[DataMember]
public virtual string AppointmentText { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ContactDepartment
The department of the contact connected to the appointment
Declaration
[DataMember]
public virtual string ContactDepartment { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ContactFullName
The entire name of the contact, including department name
Declaration
[DataMember]
public virtual string ContactFullName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ContactId
The contacts identifier
Declaration
[DataMember]
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ContactName
The contact associated with the appointment.
Declaration
[DataMember]
public virtual string ContactName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
EndDate
Date + end time planned
Declaration
[DataMember]
public virtual DateTime EndDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
HasAlarm
Does this appointment have an alarm
Declaration
[DataMember]
public virtual bool HasAlarm { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsAllDay
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual bool IsAllDay { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsAssignment
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual bool IsAssignment { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsBusy
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual bool IsBusy { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsCompleted
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual bool IsCompleted { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsInvitation
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual bool IsInvitation { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsTentative
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual bool IsTentative { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Location
Location for appointment, defaulted from invited resource of type place and other rules, but you can write anything you want here
Declaration
[DataMember]
public virtual string Location { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Participants
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual ParticipantSyncData[] Participants { get; set; }
Property Value
Type | Description |
---|---|
ParticipantSyncData[] |
See Also
PersonFormalName
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual string PersonFormalName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PersonFullName
The full name of the person this appointment belongs to.
Declaration
[DataMember]
public virtual string PersonFullName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PersonId
Person ID of person the appointment is with, may be 0
Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ProjectId
ID of project referred to, may be 0
Declaration
[DataMember]
public virtual int ProjectId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ProjectName
Project name
Declaration
[DataMember]
public virtual string ProjectName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
SaleId
Owning sale, if any (may be 0)
Declaration
[DataMember]
public virtual int SaleId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
SaleName
Sale heading (short description?)
Declaration
[DataMember]
public virtual string SaleName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
StartDate
date + start time planned
Declaration
[DataMember]
public virtual DateTime StartDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
TaskName
Carrier object for AppointmentSyncData. Services for the AppointmentSyncData Carrier is available from the Appointment Agent.
Declaration
[DataMember]
public virtual string TaskName { 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. |