Class: ZUORA::DeleteResult

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

Overview

/DeleteResult

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of DeleteResult.



1045
1046
1047
1048
1049
# File 'lib/zuora/ZUORA.rb', line 1045

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

Instance Attribute Details

#errorsObject

Returns the value of attribute errors.



1041
1042
1043
# File 'lib/zuora/ZUORA.rb', line 1041

def errors
  @errors
end

#idObject

Returns the value of attribute id.



1042
1043
1044
# File 'lib/zuora/ZUORA.rb', line 1042

def id
  @id
end

#successObject

Returns the value of attribute success.



1043
1044
1045
# File 'lib/zuora/ZUORA.rb', line 1043

def success
  @success
end