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.



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

#errorsObject

Returns the value of attribute errors.



1051
1052
1053
# File 'lib/zuora/ZUORA.rb', line 1051

def errors
  @errors
end

#idObject

Returns the value of attribute id.



1052
1053
1054
# File 'lib/zuora/ZUORA.rb', line 1052

def id
  @id
end

#successObject

Returns the value of attribute success.



1053
1054
1055
# File 'lib/zuora/ZUORA.rb', line 1053

def success
  @success
end