Class NSApproveRejectResponse
Contains a PluginResponse and an appointment ID if the operation created one.
Syntax
Constructors
NSApproveRejectResponse()
Initializes a new instance of the NSApproveRejectResponse class.
Declaration
NSApproveRejectResponse
Methods
GetCreatedAppointmentId()
Contains a PluginResponse and an appointment ID if the operation created one.
Declaration
Integer GetCreatedAppointmentId()
Returns
Type | Description |
---|---|
Integer | ID of the created follow up. |
Examples
NSApproveRejectResponse thing;
Integer createdAppointmentId = thing.GetCreatedAppointmentId();
GetPluginResponse()
Contains a PluginResponse and an appointment ID if the operation created one.
Declaration
NSPluginResponse GetPluginResponse()
Returns
Type | Description |
---|---|
NSPluginResponse | The response from the operation. |
Examples
NSApproveRejectResponse thing;
NSPluginResponse pluginResponse = thing.GetPluginResponse();
SetCreatedAppointmentId(Integer)
Contains a PluginResponse and an appointment ID if the operation created one.
Declaration
Void SetCreatedAppointmentId(Integer createdAppointmentId)
Parameters
Type | Name | Description |
---|---|---|
Integer | createdAppointmentId | ID of the created follow up. |
Returns
Type | Description |
---|---|
Void |
Examples
NSApproveRejectResponse thing;
Integer createdAppointmentId;
thing.SetCreatedAppointmentId(createdAppointmentId);
SetPluginResponse(NSPluginResponse)
Contains a PluginResponse and an appointment ID if the operation created one.
Declaration
Void SetPluginResponse(NSPluginResponse pluginResponse)
Parameters
Type | Name | Description |
---|---|---|
NSPluginResponse | pluginResponse | The response from the operation. |
Returns
Type | Description |
---|---|
Void |
Examples
NSApproveRejectResponse thing;
NSPluginResponse pluginResponse;
thing.SetPluginResponse(pluginResponse);