Class: ZUORA::SubscribeOptions

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

Overview

/SubscribeOptions

generateInvoice - SOAP::SOAPBoolean
processPayments - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(generateInvoice = nil, processPayments = nil) ⇒ SubscribeOptions

Returns a new instance of SubscribeOptions.



940
941
942
943
# File 'lib/zuora/ZUORA.rb', line 940

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

Instance Attribute Details

#generateInvoiceObject

Returns the value of attribute generateInvoice.



937
938
939
# File 'lib/zuora/ZUORA.rb', line 937

def generateInvoice
  @generateInvoice
end

#processPaymentsObject

Returns the value of attribute processPayments.



938
939
940
# File 'lib/zuora/ZUORA.rb', line 938

def processPayments
  @processPayments
end