-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move new enums to same nesting level as classes
- Loading branch information
Showing
6 changed files
with
80 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
|
||
namespace Box.V2.Models | ||
{ | ||
/// <summary> | ||
/// Files that will be signed, which are copies of the original source files. | ||
/// A new version of these files are created as signers sign and can be downloaded at any point in the signing process. | ||
/// </summary> | ||
public class BoxSignRequestSignFiles | ||
{ | ||
public const string FieldFiles = "files"; | ||
public const string FieldIsReadyForDownload = "is_ready_for_download"; | ||
|
||
/// <summary> | ||
/// Files that will be signed, which are copies of the original source files. | ||
/// </summary> | ||
[JsonProperty(PropertyName = FieldFiles)] | ||
public virtual List<BoxFile> Files { get; private set; } | ||
|
||
/// <summary> | ||
/// Indicates whether the sign_files documents are processing and the PDFs may be out of date. A change to any document requires processing on all sign_files. | ||
/// We recommended waiting until processing is finished (and this value is true) before downloading the PDFs. | ||
/// </summary> | ||
[JsonProperty(PropertyName = FieldIsReadyForDownload)] | ||
public virtual bool IsReadyForDownload { get; private set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters