Class: ZUORA::AmendOptions

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(generateInvoice = nil, invoiceProcessingOptions = nil, processPayments = nil) ⇒ AmendOptions

Returns a new instance of AmendOptions.



1150
1151
1152
1153
# File 'lib/zuora/ZUORA.rb', line 1150

def initialize(generateInvoice = nil, invoiceProcessingOptions = nil, processPayments = nil)
  @generateInvoice, @invoiceProcessingOptions, @processPayments = 
    generateInvoice, invoiceProcessingOptions, processPayments
end

Instance Attribute Details

#generateInvoiceObject

Returns the value of attribute generateInvoice.



1148
1149
1150
# File 'lib/zuora/ZUORA.rb', line 1148

def generateInvoice
  @generateInvoice
end

#invoiceProcessingOptionsObject

Returns the value of attribute invoiceProcessingOptions.



1148
1149
1150
# File 'lib/zuora/ZUORA.rb', line 1148

def invoiceProcessingOptions
  @invoiceProcessingOptions
end

#processPaymentsObject

Returns the value of attribute processPayments.



1148
1149
1150
# File 'lib/zuora/ZUORA.rb', line 1148

def processPayments
  @processPayments
end