for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LiveStream\Resources;
use LiveStream\Resources\Resource;
class RTMPKey extends Resource
{
/**
* Get RTMP Key ID.
*
* @return string|null
*/
public function getId(): ?string
return $this->data->id ?? null;
}
* Get RTMP Key URL.
public function getUrl(): ?string
return $this->data->rtmpUrl ?? null;