Skip to content

Commit 3ed5517

Browse files
committed
Update method name.
1 parent 1f66e79 commit 3ed5517

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

HubSpot.NET/Api/Deal/HubSpotDealApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public HubSpotDealApi(IHubSpotClient client)
109109
/// <param name="objectName">String name of Hubspot object related to deals (contact\account)</param>
110110
/// <param name="opts">Options (limit, offset) relating to request</param>
111111
/// <returns>List of deals</returns>
112-
public DealListHubSpotModel<T> AssociatedList<T>(bool includeAssociations, long hubId, ListRequestOptions opts = null, string objectName = "contact") where T : DealHubSpotModel, new()
112+
public DealListHubSpotModel<T> ListAssociated<T>(bool includeAssociations, long hubId, ListRequestOptions opts = null, string objectName = "contact") where T : DealHubSpotModel, new()
113113
{
114114
if (opts == null)
115115
{

HubSpot.NET/Core/Interfaces/IHubSpotDealApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ DealRecentListHubSpotModel<T> RecentlyCreated<T>(DealRecentRequestOptions opts =
1818

1919
DealRecentListHubSpotModel<T> RecentlyUpdated<T>(DealRecentRequestOptions opts = null)
2020
where T : DealHubSpotModel, new();
21-
DealListHubSpotModel<T> AssociatedList<T>(bool includeAssociations, long hubId, ListRequestOptions opts = null, string objectName = "contact") where T :DealHubSpotModel, new();
21+
DealListHubSpotModel<T> ListAssociated<T>(bool includeAssociations, long hubId, ListRequestOptions opts = null, string objectName = "contact") where T :DealHubSpotModel, new();
2222
}
2323
}

0 commit comments

Comments
 (0)