Sha256: c2ecc5b2f1458d7c96293523cf0c3d9702b7439064bf3fa06fc3975f25d71d22
Contents?: true
Size: 753 Bytes
Versions: 5
Compression:
Stored size: 753 Bytes
Contents
module Onfido class API def initialize(options = {}) @api_key = options[:api_key] end def applicant Onfido::Applicant.new(@api_key) end def check Onfido::Check.new(@api_key) end def document Onfido::Document.new(@api_key) end def live_photo Onfido::LivePhoto.new(@api_key) end def live_video Onfido::LiveVideo.new(@api_key) end def report Onfido::Report.new(@api_key) end def report_type_group Onfido::ReportTypeGroup.new(@api_key) end def sdk_token Onfido::SdkToken.new(@api_key) end def webhook Onfido::Webhook.new(@api_key) end def address Onfido::Address.new(@api_key) end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
onfido-0.15.1 | lib/onfido/api.rb |
onfido-0.15.0 | lib/onfido/api.rb |
onfido-0.14.0 | lib/onfido/api.rb |
onfido-0.13.0 | lib/onfido/api.rb |
onfido-0.12.0 | lib/onfido/api.rb |