Skip to content

Commit

Permalink
Ignore Type field
Browse files Browse the repository at this point in the history
  • Loading branch information
congminh1254 committed Jun 20, 2024
1 parent 5915642 commit 3988564
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Box.V2/Models/BoxGroupEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class BoxGroupEventSource : BoxEntity
/// <summary>
/// The type of the object.
/// </summary>
[JsonIgnore]
public override string Type { get { return "group"; } protected set { return; } }

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions Box.V2/Models/BoxGroupFileCollaborationEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class BoxGroupFileCollaborationEventSource : BoxEntity
/// <summary>
/// The type of the object.
/// </summary>
[JsonIgnore]
public override string Type { get { return "file"; } protected set { return; } }

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions Box.V2/Models/BoxGroupFolderCollaborationEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class BoxGroupFolderCollaborationEventSource : BoxEntity
/// <summary>
/// The type of the object.
/// </summary>
[JsonIgnore]
public override string Type { get { return "folder"; } protected set { return; } }

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions Box.V2/Models/BoxUserFileCollaborationEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public class BoxUserFileCollaborationEventSource : BoxEntity
/// <summary>
/// The type of the object.
/// </summary>
[JsonIgnore]
public override string Type { get { return "file"; } protected set { return; } }

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions Box.V2/Models/BoxUserFolderCollaborationEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class BoxUserFolderCollaborationEventSource : BoxEntity
/// <summary>
/// The type of the object.
/// </summary>
[JsonIgnore]
public override string Type { get { return "folder"; } protected set { return; } }

/// <summary>
Expand Down

0 comments on commit 3988564

Please sign in to comment.