mobilebackend/Twilio/Jwt/Grants/Grant.php

21 lines
313 B
PHP
Raw Normal View History

2020-02-06 10:09:26 +00:00
<?php
namespace Twilio\Jwt\Grants;
interface Grant {
/**
* Returns the grant type
*
* @return string type of the grant
*/
public function getGrantKey();
/**
* Returns the grant data
*
* @return array data of the grant
*/
public function getPayload();
}