module Moip2 class Api attr_reader :client def initialize(client) @client = client end def order Moip2::OrderApi.new(client) end def payment Moip2::PaymentApi.new(client) end def invoice Moip2::InvoiceApi.new client end def refund Moip2::RefundApi.new(client) end def keys Moip2::KeysApi.new(client) end end end