Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
parsgit committed Nov 2, 2019
1 parent a279910 commit 2404713
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions BotFire.php
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,54 @@ public function reply_to($message_id)
return $this;
}

public function duration($duration)
{
$this->params['duration']=$duration;
return $this;
}

public function performer($performer)
{
$this->params['performer']=$performer;
return $this;
}

public function title($title)
{
$this->params['title']=$title;
return $this;
}

public function width($width)
{
$this->params['width']=$width;
return $this;
}

public function height($height)
{
$this->params['height']=$width;
return $this;
}

public function supports_streaming($supports_streaming)
{
$this->params['supports_streaming']=$supports_streaming;
return $this;
}

public function thumb($thumb)
{
$this->params['thumb']=$thumb;
return $this;
}

public function length($length)
{
$this->params['length']=$length;
return $this;
}

/**
* Additional interface options. A JSON-serialized
* object for an inline keyboard,custom reply keyboard,
Expand Down

0 comments on commit 2404713

Please sign in to comment.