sampatbadhe/dotloop-ruby

View on GitHub
lib/dotloop/models/loop_details/referral.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Dotloop
  module Models
    module LoopDetails
      class Referral
        include Virtus.model
        attribute :referral_source
        attribute :referral_percent
      end
    end
  end
end