Class AppointmentMoveData
Parameter data for moving an appointment.
Carrier object for AppointmentMoveData. Services for the AppointmentMoveData 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 AppointmentMoveData : Carrier
Constructors
AppointmentMoveData()
Default constructor
Declaration
public AppointmentMoveData()
See Also
Properties
AppointmentId
The appointmentId. Both master and child record ids are accepted.
Declaration
[DataMember]
public virtual int AppointmentId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ImapEMailConnectionInfo
Login information for imap server. Will be null if no login information is relevant.
Declaration
[DataMember]
public virtual EMailConnectionInfo ImapEMailConnectionInfo { get; set; }
Property Value
Type | Description |
---|---|
EMailConnectionInfo |
See Also
IsAlldayEvent
If true, the appointment should be set to all day
Declaration
[DataMember]
public virtual bool IsAlldayEvent { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsFree
If true, the time is free (not busy).
Declaration
[DataMember]
public virtual bool IsFree { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
NewStartTime
The new start time for the moved booking.
Declaration
[DataMember]
public virtual DateTime NewStartTime { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
SendEmailToParticipants
If true, emails will be sent to all participants that is marked with send email flag if deemed necessary. If false no mails will be sent even if the send email flag is true.
Declaration
[DataMember]
public virtual bool SendEmailToParticipants { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
SmtpEMailConnectionInfo
Login information for outgoing smtp email server. Will be null if no login information is relevant.
Declaration
[DataMember]
public virtual EMailConnectionInfo SmtpEMailConnectionInfo { get; set; }
Property Value
Type | Description |
---|---|
EMailConnectionInfo |
See Also
UpdateMode
Update mode for a recurring appointment.
Declaration
[DataMember]
public virtual RecurrenceUpdateMode UpdateMode { get; set; }
Property Value
Type | Description |
---|---|
RecurrenceUpdateMode |
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. |