somleng/somleng-adhearsion

View on GitHub
components/app/app/models/sip_headers.rb

Summary

Maintainability
A
0 mins
Test Coverage
SIPHeaders = Struct.new(:call_sid, :account_sid, keyword_init: true) do
  def to_h
    {
      "X-Somleng-CallSid" => call_sid,
      "X-Somleng-AccountSid" => account_sid
    }
  end
end