-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Support get collection by ID endpoint (box/box-openapi#480)
- Loading branch information
1 parent
aed06af
commit 9394b50
Showing
5 changed files
with
84 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{ "engineHash": "9c64675", "specHash": "9d452cf", "version": "1.4.0" } | ||
{ "engineHash": "9c64675", "specHash": "c2c76f3", "version": "1.4.0" } |
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
19 changes: 19 additions & 0 deletions
19
Box.Sdk.Gen/Managers/Collections/GetCollectionByIdHeaders.cs
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,19 @@ | ||
using Box.Sdk.Gen; | ||
using System; | ||
using System.Collections.ObjectModel; | ||
using System.Collections.Generic; | ||
using Box.Sdk.Gen.Schemas; | ||
using Box.Sdk.Gen.Internal; | ||
|
||
namespace Box.Sdk.Gen.Managers { | ||
public class GetCollectionByIdHeaders { | ||
/// <summary> | ||
/// Extra headers that will be included in the HTTP request. | ||
/// </summary> | ||
public Dictionary<string, string?> ExtraHeaders { get; } | ||
|
||
public GetCollectionByIdHeaders(Dictionary<string, string?>? extraHeaders = default) { | ||
ExtraHeaders = extraHeaders ?? new Dictionary<string, string?>() { }; | ||
} | ||
} | ||
} |
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