Skip to content

Commit

Permalink
Merge pull request #12 from zoho/beta
Browse files Browse the repository at this point in the history
4.0.0
  • Loading branch information
raja-7453 committed Mar 8, 2024
2 parents d9fc147 + d64d661 commit e2279da
Show file tree
Hide file tree
Showing 1,314 changed files with 141,594 additions and 0 deletions.
24 changes: 24 additions & 0 deletions versions/4.0.0/ZohoCRM/Com/Zoho/API/Authenticator/IToken.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using Com.Zoho.Crm.API.Util;

namespace Com.Zoho.API.Authenticator
{
/// <summary>
/// This interface verifies and sets token to APIHTTPConnector instance.
/// </summary>
public interface IToken
{
/// <summary>
/// This method to set authentication token to APIHTTPConnector instance.
/// </summary>
/// <param name="urlConnection">A APIHTTPConnector class instance.</param>
public void Authenticate(APIHTTPConnector urlConnection);

public bool Revoke(string id);

public void Remove();

public void GenerateToken();

public string GetId();
}
}

0 comments on commit e2279da

Please sign in to comment.