Class: ZUORA::DeleteResult
- Inherits:
-
Object
- Object
- ZUORA::DeleteResult
- 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) ⇒ DeleteResult
constructor
A new instance of DeleteResult.
Constructor Details
#initialize(errors = [], id = nil, success = nil) ⇒ DeleteResult
Returns a new instance of DeleteResult.
1071 1072 1073 1074 1075 |
# File 'lib/zuora/ZUORA.rb', line 1071 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.
1067 1068 1069 |
# File 'lib/zuora/ZUORA.rb', line 1067 def errors @errors end |
#id ⇒ Object
Returns the value of attribute id.
1068 1069 1070 |
# File 'lib/zuora/ZUORA.rb', line 1068 def id @id end |
#success ⇒ Object
Returns the value of attribute success.
1069 1070 1071 |
# File 'lib/zuora/ZUORA.rb', line 1069 def success @success end |