Class: LinkProduto
- Inherits:
-
Object
- Object
- LinkProduto
- Defined in:
- lib/anvisa_parser.rb
Instance Attribute Summary collapse
-
#cnpj ⇒ Object
Returns the value of attribute cnpj.
-
#codigo ⇒ Object
Returns the value of attribute codigo.
-
#empresa ⇒ Object
Returns the value of attribute empresa.
Instance Method Summary collapse
-
#initialize(codigo, empresa, cnpj) ⇒ LinkProduto
constructor
A new instance of LinkProduto.
Constructor Details
#initialize(codigo, empresa, cnpj) ⇒ LinkProduto
Returns a new instance of LinkProduto.
59 60 61 62 63 |
# File 'lib/anvisa_parser.rb', line 59 def initialize(codigo, empresa, cnpj) @codigo = codigo @empresa = empresa @cnpj = cnpj end |
Instance Attribute Details
#cnpj ⇒ Object
Returns the value of attribute cnpj.
57 58 59 |
# File 'lib/anvisa_parser.rb', line 57 def cnpj @cnpj end |
#codigo ⇒ Object
Returns the value of attribute codigo.
57 58 59 |
# File 'lib/anvisa_parser.rb', line 57 def codigo @codigo end |
#empresa ⇒ Object
Returns the value of attribute empresa.
57 58 59 |
# File 'lib/anvisa_parser.rb', line 57 def empresa @empresa end |