Class AlarmData
Carrier object for AlarmData. Services for the AlarmData Carrier is available from the IAppointmentAgent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class AlarmData : Carrier
Constructors
AlarmData()
Default constructor
Declaration
public AlarmData()
See Also
Properties
AlarmTime
Carrier object for AlarmData. Services for the AlarmData Carrier is available from the IAppointmentAgent.
Declaration
public virtual DateTime AlarmTime { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
AppointmentId
Primary key
Declaration
public virtual int AppointmentId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
AppointmentText
The actual text, max 2047 significant characters even though it is stored as a larger data type on some databases
Declaration
public virtual string AppointmentText { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
AppointmentType
where=no start time,note,docin, docout
Declaration
public virtual AppointmentType AppointmentType { get; set; }
Property Value
Type | Description |
---|---|
AppointmentType |
See Also
AssignmentStatus
Status if this appointment is in the process of being assigned to someone else
Declaration
public virtual AssignmentStatus AssignmentStatus { get; set; }
Property Value
Type | Description |
---|---|
AssignmentStatus |
See Also
BookingType
The type of booking the appointment represents
Declaration
public virtual BookingType BookingType { get; set; }
Property Value
Type | Description |
---|---|
BookingType |
See Also
ContactDepartment
Department
Declaration
public virtual string ContactDepartment { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
ContactFullName
Carrier object for AlarmData. Services for the AlarmData Carrier is available from the IAppointmentAgent.
Declaration
public virtual string ContactFullName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
ContactId
Contact ID of owning contact, may be 0
Declaration
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
ContactName
Contact name
Declaration
public virtual string ContactName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
EndDate
Date + end time planned
Declaration
public virtual DateTime EndDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
FormalName
The associate's culture formatted formalname (firstname, middleName and lastname, title, mrmrs)
Declaration
public virtual string FormalName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
InvitationStatus
Status if this appointment represents an invitation
Declaration
public virtual InvitationStatus InvitationStatus { get; set; }
Property Value
Type | Description |
---|---|
InvitationStatus |
See Also
JoinVideomeetUrl
Carrier object for AlarmData. Services for the AlarmData Carrier is available from the IAppointmentAgent.
Declaration
public virtual string JoinVideomeetUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
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
public virtual string Location { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
PersonFullName
The associate's culture formatted fullname (firstname, middleName and lastname)
Declaration
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
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
ProjectId
ID of project referred to, may be 0
Declaration
public virtual int ProjectId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
ProjectName
Project name
Declaration
public virtual string ProjectName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
SaleId
Owning sale, if any (may be 0)
Declaration
public virtual int SaleId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
SaleName
Carrier object for AlarmData. Services for the AlarmData Carrier is available from the IAppointmentAgent.
Declaration
public virtual string SaleName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
StartTime
date + start time planned
Declaration
public virtual DateTime StartTime { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
TaskName
Carrier object for AlarmData. Services for the AlarmData Carrier is available from the IAppointmentAgent.
Declaration
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. |