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.



1063
1064
1065
1066
# File 'lib/zuora/ZUORA.rb', line 1063

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

Instance Attribute Details

#generateInvoiceObject

Returns the value of attribute generateInvoice.



1060
1061
1062
# File 'lib/zuora/ZUORA.rb', line 1060

def generateInvoice
  @generateInvoice
end

#processPaymentsObject

Returns the value of attribute processPayments.



1061
1062
1063
# File 'lib/zuora/ZUORA.rb', line 1061

def processPayments
  @processPayments
end