DescribeHlsLiveStreamRealTimeBpsDataRequest.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace live\Request\V20161101;
  3. /**
  4. * @deprecated Please use https://github.com/aliyun/openapi-sdk-php
  5. *
  6. * Request of DescribeHlsLiveStreamRealTimeBpsData
  7. *
  8. * @method string getDomainName()
  9. * @method string getTime()
  10. * @method string getOwnerId()
  11. */
  12. class DescribeHlsLiveStreamRealTimeBpsDataRequest extends \RpcAcsRequest
  13. {
  14. /**
  15. * Class constructor.
  16. */
  17. public function __construct()
  18. {
  19. parent::__construct(
  20. 'live',
  21. '2016-11-01',
  22. 'DescribeHlsLiveStreamRealTimeBpsData',
  23. 'live'
  24. );
  25. }
  26. /**
  27. * @param string $domainName
  28. *
  29. * @return $this
  30. */
  31. public function setDomainName($domainName)
  32. {
  33. $this->requestParameters['DomainName'] = $domainName;
  34. $this->queryParameters['DomainName'] = $domainName;
  35. return $this;
  36. }
  37. /**
  38. * @param string $time
  39. *
  40. * @return $this
  41. */
  42. public function setTime($time)
  43. {
  44. $this->requestParameters['Time'] = $time;
  45. $this->queryParameters['Time'] = $time;
  46. return $this;
  47. }
  48. /**
  49. * @param string $ownerId
  50. *
  51. * @return $this
  52. */
  53. public function setOwnerId($ownerId)
  54. {
  55. $this->requestParameters['OwnerId'] = $ownerId;
  56. $this->queryParameters['OwnerId'] = $ownerId;
  57. return $this;
  58. }
  59. }