Class: ZUORA::SaveResult
- Inherits:
-
Object
- Object
- ZUORA::SaveResult
- Defined in:
- lib/zuora/ZUORA.rb
Overview
Instance Attribute Summary collapse
-
#errors ⇒ Object
Returns the value of attribute errors.
-
#id ⇒ Object
Returns the value of attribute id.
-
#success ⇒ Object
Returns the value of attribute success.
Instance Method Summary collapse
-
#initialize(errors = [], id = nil, success = nil) ⇒ SaveResult
constructor
A new instance of SaveResult.
Constructor Details
#initialize(errors = [], id = nil, success = nil) ⇒ SaveResult
Returns a new instance of SaveResult.
1055 1056 1057 1058 1059 |
# File 'lib/zuora/ZUORA.rb', line 1055 def initialize(errors = [], id = nil, success = nil) @errors = errors @id = id @success = success end |
Instance Attribute Details
#errors ⇒ Object
Returns the value of attribute errors.
1051 1052 1053 |
# File 'lib/zuora/ZUORA.rb', line 1051 def errors @errors end |
#id ⇒ Object
Returns the value of attribute id.
1052 1053 1054 |
# File 'lib/zuora/ZUORA.rb', line 1052 def id @id end |
#success ⇒ Object
Returns the value of attribute success.
1053 1054 1055 |
# File 'lib/zuora/ZUORA.rb', line 1053 def success @success end |