All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twilio.sdk.auth.Grant Maven / Gradle / Ivy

There is a newer version: 7.0.0-rc-10
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy