ignacio-chiazzo/ruby_whatsapp_sdk

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module WhatsappSdk
  module Api
    module Responses
      class IdResponse
        attr_accessor :id

        def initialize(id)
          @id = id
        end
      end
    end
  end
end