File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
HubSpot.NET/Core/Interfaces Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,10 @@ public interface IHubSpotContactApi
1111 void Batch < T > ( List < T > entities ) where T : ContactHubSpotModel , new ( ) ;
1212 T GetByEmail < T > ( string email ) where T : ContactHubSpotModel , new ( ) ;
1313 T GetById < T > ( long contactId ) where T : ContactHubSpotModel , new ( ) ;
14+ T GetByUserToken < T > ( string userToken ) where T : ContactHubSpotModel , new ( ) ;
1415 ContactListHubSpotModel < T > List < T > ( ListRequestOptions opts = null ) where T : ContactHubSpotModel , new ( ) ;
1516 void Update < T > ( T contact ) where T : ContactHubSpotModel , new ( ) ;
1617 ContactListHubSpotModel < T > RecentlyCreated < T > ( ListRecentRequestOptions opts = null ) where T : ContactHubSpotModel , new ( ) ;
1718 ContactListHubSpotModel < T > RecentlyUpdated < T > ( ListRecentRequestOptions opts = null ) where T : ContactHubSpotModel , new ( ) ;
1819 }
19- }
20+ }
You can’t perform that action at this time.
0 commit comments