class Echochamber::PhoneInfo

Public Class Methods

new(params) click to toggle source

PhoneInfo

@param [Hash] params SYMBOL-referenced Hash. @option params [String] :phone The phone number required for the recipient to view and sign the document (REQUIRED) @option params [String] :countryCode The phoneInfo country code required for the recipient to view and sign the document if authentication type is PHONE @return [Echochamber::PhoneInfo]

# File lib/echochamber/agreement/phone_info.rb, line 13
def initialize(params)
  require_keys([:phone], params)
  merge!(params)
end