class SecureNative::RequestOptions

Attributes

body[RW]
retry_sending[RW]
url[RW]

Public Class Methods

new(url, body, retry_sending) click to toggle source
# File lib/securenative/request_options.rb, line 8
def initialize(url, body, retry_sending)
  @url = url
  @body = body
  @retry_sending = retry_sending
end