class Mobilepay::Security
Security
requests
Attributes
body[R]
headers[R]
privatekey[R]
Public Class Methods
new(args = {})
click to toggle source
# File lib/mobilepay/security.rb, line 19 def initialize(args = {}) @privatekey = args[:privatekey] @headers = { 'Ocp-Apim-Subscription-Key' => args[:subscription_key], 'Content-Type' => 'application/json' } @body = '' end