ignacio-chiazzo/ruby_whatsapp_sdk

View on GitHub
lib/whatsapp_sdk/api/responses/success_response.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module WhatsappSdk
  module Api
    module Responses
      class SuccessResponse
        def self.success_response?(response:)
          response["success"] == true
        end
      end
    end
  end
end