Sha256: f226c8ef7c997167c10d1928d6e63f734c062b60b2e7cc22ab528d2904beb320
Contents?: true
Size: 361 Bytes
Versions: 13
Compression:
Stored size: 361 Bytes
Contents
# frozen_string_literal: true module Onfido class LiveVideo < Resource def find(live_video_id) get(path: "live_videos/#{live_video_id}") end def download(live_video_id) get(path: "live_videos/#{live_video_id}/download") end def all(applicant_id) get(path: "live_videos?applicant_id=#{applicant_id}") end end end
Version data entries
13 entries across 13 versions & 1 rubygems