Method: Viberroo::Message.video

Defined in:
lib/viberroo/message.rb

.video(params = {}) ⇒ Hash

Note:

Max video size is 26MB.

Video message.

Parameters:

  • params (Hash) (defaults to: {})

Options Hash (params):

  • media (String)

    Required. URL of the video (MP4, H264). Only MP4 and H264 are supported.

  • size (Integer)

    Required. Size of the video in bytes.

  • duration (Integer)

    Optional. Duration in seconds. Max value - 180.

  • thumbnail (String)

    Optional. Thumbnail URL. Max size 100 kb. Recommended: 400x400. Only JPEG format is supported.

Returns:

  • (Hash)

See Also:

[View source]

125
126
127
# File 'lib/viberroo/message.rb', line 125

def self.video(params = {})
  { type: :video }.merge(params)
end