-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These patch notes summarize the changes from version 121.0.4887. Added 3 new APIs: * ProjectCustomer.CreateProjectCustomer (POST /api/data/projects/customers) * ProjectCustomer.UpdateProjectCustomer (PUT /api/data/projects/customers/{customerId}) * ProjectCustomer.DeleteProjectCustomer (DELETE /api/data/projects/customers/{customerId}) Co-authored-by: tspence <[email protected]>
- Loading branch information
1 parent
73551bb
commit 5437374
Showing
8 changed files
with
14,912 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
* @author ProjectManager.com <[email protected]> | ||
* | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @version 121.0.4887 | ||
* @version 122.0.214 | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
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,36 @@ | ||
/*** | ||
* ProjectManager API for C# | ||
* | ||
* (c) 2023-2024 ProjectManager.com, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author ProjectManager.com <[email protected]> | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
||
|
||
#pragma warning disable CS8618 | ||
|
||
using System; | ||
|
||
namespace ProjectManager.SDK.Models | ||
{ | ||
|
||
/// <summary> | ||
/// A ProjectCustomer is a code used to identify costs within your Projects. Each | ||
/// ProjectCustomer has a name and a unique identifier. ChargeCodes are defined per | ||
/// Workspace and are shared among Projects. | ||
/// </summary> | ||
public class ProjectCustomerCreateDto : ApiModel | ||
{ | ||
|
||
/// <summary> | ||
/// The name of this ProjectCustomer | ||
/// </summary> | ||
public string Name { get; 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
* @author ProjectManager.com <[email protected]> | ||
* | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @version 121.0.4887 | ||
* @version 122.0.214 | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
@@ -39,7 +39,7 @@ public class ProjectManagerClient : IProjectManagerClient | |
/// <summary> | ||
/// The version of the SDK | ||
/// </summary> | ||
public const string SdkVersion = "121.0.4887"; | ||
public const string SdkVersion = "122.0.214"; | ||
|
||
private readonly string _apiUrl; | ||
private readonly HttpClient _client; | ||
|
Oops, something went wrong.