Skip to content

Commit

Permalink
Modified 'Status' property of the BoxRepresentationStatus class to ov…
Browse files Browse the repository at this point in the history
…ercome deserialization issue (#429)
  • Loading branch information
PraveenKariyapperuma authored and carycheng committed Jan 5, 2018
1 parent e511bfd commit 9157e04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Box.V2/Models/BoxRepresentationStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ namespace Box.V2.Models
{
public class BoxRepresentationStatus
{
public const string FieldStatus = "status";
public const string FieldState = "state";

/// <summary>
/// The status on generating the representation
/// </summary>
[JsonProperty(PropertyName = FieldStatus)]
public string Status { get; private set; }
[JsonProperty(PropertyName = FieldState)]
public string State { get; private set; }
}
}

0 comments on commit 9157e04

Please sign in to comment.