* $walletobjectsService = new Google\Service\Walletobjects(...); * $jwt = $walletobjectsService->jwt; * */ class Jwt extends \Google\Service\Resource { /** * Inserts the resources in the JWT. (jwt.insert) * * @param JwtResource $postBody * @param array $optParams Optional parameters. * @return JwtInsertResponse * @throws \Google\Service\Exception */ public function insert(JwtResource $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('insert', [$params], JwtInsertResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Jwt::class, 'Google_Service_Walletobjects_Resource_Jwt');