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