com.twilio.sdk.auth.Grant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Release Candidate for Next-Gen Twilio Java Helper Library
package com.twilio.sdk.auth;
public interface Grant {
/**
* The key for the grant.
*
* @return The key for the grant.
*/
public String getGrantKey();
/**
* The payload for this grant.
*
* The payload allows us to decouple the user API from how the grant is structured.
*
* @return The payload for this grant.
*/
public Object getPayload();
}