class Echosign::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 [Echosign::PhoneInfo]

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