Skip to content

Commit

Permalink
Added new endpoint for getting an owner by id to the interface
Browse files Browse the repository at this point in the history
  • Loading branch information
taizoon-boomandbucket committed Oct 1, 2024
1 parent 75a6882 commit 6a03922
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions HubSpot.NET/Core/Interfaces/IHubSpotOwnerApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ public interface IHubSpotOwnerApi
{
OwnerListHubSpotModel<T> GetAll<T>(OwnerGetAllRequestOptions opts = null)
where T: OwnerHubSpotModel, new();

T GetById<T>(long ownerId) where T : OwnerHubSpotModel, new();
}
}

0 comments on commit 6a03922

Please sign in to comment.