Class: ZUORA::SaveResult

Inherits:
Object
  • Object
show all
Defined in:
lib/zuora/ZUORA.rb

Overview

/SaveResult

errors - ZUORA::Error
id - (any)
success - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(errors = [], id = nil, success = nil) ⇒ SaveResult

Returns a new instance of SaveResult.



1029
1030
1031
1032
1033
# File 'lib/zuora/ZUORA.rb', line 1029

def initialize(errors = [], id = nil, success = nil)
  @errors = errors
  @id = id
  @success = success
end

Instance Attribute Details

#errorsObject

Returns the value of attribute errors.



1025
1026
1027
# File 'lib/zuora/ZUORA.rb', line 1025

def errors
  @errors
end

#idObject

Returns the value of attribute id.



1026
1027
1028
# File 'lib/zuora/ZUORA.rb', line 1026

def id
  @id
end

#successObject

Returns the value of attribute success.



1027
1028
1029
# File 'lib/zuora/ZUORA.rb', line 1027

def success
  @success
end