module Segurofacil::REST::EstagiarioRemove

Constants

PATH

Public Instance Methods

remove(estagiario_cpf, cnpj) click to toggle source
# File lib/segurofacil/rest/estagiario_remove.rb, line 7
def remove(estagiario_cpf, cnpj)
  Segurofacil::REST::Request.post(
    PATH,
    params: {
      cpf: estagiario_cpf,
      cnpj: cnpj
    }
  ).perform
end