Skip to content

Instantly share code, notes, and snippets.

@Romiko
Created August 1, 2014 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Romiko/d200446a3a67a075d506 to your computer and use it in GitHub Desktop.
Save Romiko/d200446a3a67a075d506 to your computer and use it in GitHub Desktop.
PowerscribeStatus
namespace Powerscribe.Client
{
public enum PowerscribeStatus
{
/// <summary>
/// Specifies that a report was created and then discarded.
/// </summary>
Discarded = -1,
/// <summary>
/// Specifies that the status is unknown or pending because the report is currently being saved by the application in the background.
/// </summary>
UnknownOrPending = 0,
/// <summary>
/// Specifies that the report status is WetRead.
/// </summary>
WetRead = 1,
/// <summary>
/// Specifies that the report status is Draft.
/// </summary>
Draft = 2,
/// <summary>
/// Dictated
/// Specifies that the report status is PendingCorrection. The report enters that status when its author sends it to an editor for correction/transcription.
/// </summary>
PendingCorrection = 3,
/// <summary>
/// Specifies that the report status is Corrected. The report enters that status when an editor is done correcting/transcribing it.
/// </summary>
Corrected = 4,
/// <summary>
/// Specifies that the report status is CorrectionRejected. The report enters that status when the author rejects the report corrected/transcribed by an editor.
/// </summary>
CorrectionRejected = 5,
/// <summary>
/// Specifies that the report status is PendingSignature. The report enters this status when approved by the resident who dictated it, or when signed as preliminary by the attending
/// </summary>
PendingSignature = 6,
/// <summary>
/// Specifies that the report status is SignRejected. The report enters this status when the attending rejects the report approved by the resident.
/// </summary>
SignRejected = 7,
/// <summary>
/// Signed
/// Specifies that the report status is Final.
/// </summary>
Final = 8,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment