seban/ruby-getresponse

View on GitHub
lib/get_response/from_field.rb

Summary

Maintainability
A
0 mins
Test Coverage
module GetResponse

  # Form field connected with account.
  class FromField

    attr_reader :id, :name, :email, :created_on


    def initialize(params)
      @id         = params["id"]
      @name       = params["name"]
      @email      = params["email"]
      @created_on = params["created_on"]
    end

  end

end