Class: ZUORA::ApiFault
- Inherits:
-
Object
- Object
- ZUORA::ApiFault
- Defined in:
- lib/zuora/ZUORA.rb
Overview
Instance Attribute Summary collapse
-
#faultCode ⇒ Object
Returns the value of attribute faultCode.
-
#faultMessage ⇒ Object
Returns the value of attribute faultMessage.
Instance Method Summary collapse
-
#initialize(faultCode = nil, faultMessage = nil) ⇒ ApiFault
constructor
A new instance of ApiFault.
Constructor Details
#initialize(faultCode = nil, faultMessage = nil) ⇒ ApiFault
Returns a new instance of ApiFault.
1120 1121 1122 1123 |
# File 'lib/zuora/ZUORA.rb', line 1120 def initialize(faultCode = nil, faultMessage = nil) @faultCode = faultCode @faultMessage = faultMessage end |
Instance Attribute Details
#faultCode ⇒ Object
Returns the value of attribute faultCode.
1117 1118 1119 |
# File 'lib/zuora/ZUORA.rb', line 1117 def faultCode @faultCode end |
#faultMessage ⇒ Object
Returns the value of attribute faultMessage.
1118 1119 1120 |
# File 'lib/zuora/ZUORA.rb', line 1118 def faultMessage @faultMessage end |