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.



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

#errorsObject

Returns the value of attribute errors.



1067
1068
1069
# File 'lib/zuora/ZUORA.rb', line 1067

def errors
  @errors
end

#idObject

Returns the value of attribute id.



1068
1069
1070
# File 'lib/zuora/ZUORA.rb', line 1068

def id
  @id
end

#successObject

Returns the value of attribute success.



1069
1070
1071
# File 'lib/zuora/ZUORA.rb', line 1069

def success
  @success
end