Class: SigepWeb::Models::Receiver
- Inherits:
-
Object
- Object
- SigepWeb::Models::Receiver
- Defined in:
- lib/sigep_web/models/receiver.rb
Instance Attribute Summary collapse
-
#address ⇒ Object
Returns the value of attribute address.
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#cellphone ⇒ Object
Returns the value of attribute cellphone.
-
#cep ⇒ Object
Returns the value of attribute cep.
-
#city ⇒ Object
Returns the value of attribute city.
-
#complement ⇒ Object
Returns the value of attribute complement.
-
#cost_center_client ⇒ Object
Returns the value of attribute cost_center_client.
-
#description_object ⇒ Object
Returns the value of attribute description_object.
-
#email ⇒ Object
Returns the value of attribute email.
-
#invoice_nature ⇒ Object
Returns the value of attribute invoice_nature.
-
#invoice_number ⇒ Object
Returns the value of attribute invoice_number.
-
#invoice_serie ⇒ Object
Returns the value of attribute invoice_serie.
-
#invoice_value ⇒ Object
Returns the value of attribute invoice_value.
-
#name ⇒ Object
Returns the value of attribute name.
-
#neighborhood ⇒ Object
Returns the value of attribute neighborhood.
-
#number ⇒ Object
Returns the value of attribute number.
-
#phone ⇒ Object
Returns the value of attribute phone.
-
#uf ⇒ Object
Returns the value of attribute uf.
-
#user_postal_code ⇒ Object
Returns the value of attribute user_postal_code.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Receiver
constructor
A new instance of Receiver.
Constructor Details
permalink #initialize(options = {}) ⇒ Receiver
Returns a new instance of Receiver.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/sigep_web/models/receiver.rb', line 12 def initialize( = {}) @name = [:name] @phone = [:phone] @cellphone = [:cellphone] @email = [:email] @address = [:address] @complement = [:complement] @number = [:number] @neighborhood = [:neighborhood] @city = [:city] @uf = [:uf] @cep = [:cep] @user_postal_code = [:user_postal_code] @cost_center_client = [:cost_center_client] @invoice_number = [:invoice_number] @invoice_serie = [:invoice_serie] @invoice_value = [:invoice_value] @invoice_nature = [:invoice_nature] @description_object = [:description_object] @amount = [:amount] end |
Instance Attribute Details
permalink #address ⇒ Object
Returns the value of attribute address.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def address @address end |
permalink #amount ⇒ Object
Returns the value of attribute amount.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def amount @amount end |
permalink #cellphone ⇒ Object
Returns the value of attribute cellphone.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def cellphone @cellphone end |
permalink #cep ⇒ Object
Returns the value of attribute cep.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def cep @cep end |
permalink #city ⇒ Object
Returns the value of attribute city.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def city @city end |
permalink #complement ⇒ Object
Returns the value of attribute complement.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def complement @complement end |
permalink #cost_center_client ⇒ Object
Returns the value of attribute cost_center_client.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def cost_center_client @cost_center_client end |
permalink #description_object ⇒ Object
Returns the value of attribute description_object.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def description_object @description_object end |
permalink #email ⇒ Object
Returns the value of attribute email.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def email @email end |
permalink #invoice_nature ⇒ Object
Returns the value of attribute invoice_nature.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def invoice_nature @invoice_nature end |
permalink #invoice_number ⇒ Object
Returns the value of attribute invoice_number.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def invoice_number @invoice_number end |
permalink #invoice_serie ⇒ Object
Returns the value of attribute invoice_serie.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def invoice_serie @invoice_serie end |
permalink #invoice_value ⇒ Object
Returns the value of attribute invoice_value.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def invoice_value @invoice_value end |
permalink #name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def name @name end |
permalink #neighborhood ⇒ Object
Returns the value of attribute neighborhood.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def neighborhood @neighborhood end |
permalink #number ⇒ Object
Returns the value of attribute number.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def number @number end |
permalink #phone ⇒ Object
Returns the value of attribute phone.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def phone @phone end |
permalink #uf ⇒ Object
Returns the value of attribute uf.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def uf @uf end |
permalink #user_postal_code ⇒ Object
Returns the value of attribute user_postal_code.
6 7 8 |
# File 'lib/sigep_web/models/receiver.rb', line 6 def user_postal_code @user_postal_code end |