zuora4r 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "zuora4r"
8
- gem.version = "1.0.5"
8
+ gem.version = "1.0.6"
9
9
  gem.summary = "Zuora4r"
10
10
  gem.description = "A client for Zuora API"
11
11
  gem.email = "gene@ning.com"
data/lib/zuora/ZUORA.rb CHANGED
@@ -52,6 +52,7 @@ class Account < ZObject
52
52
  attr_accessor :currency
53
53
  attr_accessor :customerServiceRepName
54
54
  attr_accessor :defaultPaymentMethodId
55
+ attr_accessor :paymentGateway
55
56
  attr_accessor :name
56
57
  attr_accessor :notes
57
58
  attr_accessor :paymentTerm
@@ -61,7 +62,7 @@ class Account < ZObject
61
62
  attr_accessor :status
62
63
  attr_accessor :updatedDate
63
64
 
64
- def initialize(fieldsToNull = [], id = nil, accountNumber = nil, allowInvoiceEdit = nil, autoPay = nil, batch = nil, billCycleDay = nil, billToId = nil, createdDate = nil, crmId = nil, currency = nil, customerServiceRepName = nil, defaultPaymentMethodId = nil, name = nil, notes = nil, paymentTerm = nil, purchaseOrderNumber = nil, salesRepName = nil, soldToId = nil, status = nil, updatedDate = nil)
65
+ def initialize(fieldsToNull = [], id = nil, accountNumber = nil, allowInvoiceEdit = nil, autoPay = nil, batch = nil, billCycleDay = nil, billToId = nil, createdDate = nil, crmId = nil, currency = nil, customerServiceRepName = nil, defaultPaymentMethodId = nil, paymentGateway = nil, name = nil, notes = nil, paymentTerm = nil, purchaseOrderNumber = nil, salesRepName = nil, soldToId = nil, status = nil, updatedDate = nil)
65
66
  @fieldsToNull = fieldsToNull
66
67
  @id = id
67
68
  @accountNumber = accountNumber
@@ -75,6 +76,7 @@ class Account < ZObject
75
76
  @currency = currency
76
77
  @customerServiceRepName = customerServiceRepName
77
78
  @defaultPaymentMethodId = defaultPaymentMethodId
79
+ @paymentGateway = paymentGateway
78
80
  @name = name
79
81
  @notes = notes
80
82
  @paymentTerm = paymentTerm
@@ -39,6 +39,7 @@ module DefaultMappingRegistry
39
39
  ["currency", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "Currency")], [0, 1]],
40
40
  ["customerServiceRepName", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "CustomerServiceRepName")], [0, 1]],
41
41
  ["defaultPaymentMethodId", [nil, XSD::QName.new(NsObjectApiZuoraCom, "DefaultPaymentMethodId")], [0, 1]],
42
+ ["paymentGateway", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "PaymentGateway")], [0, 1]],
42
43
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "Name")], [0, 1]],
43
44
  ["notes", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "Notes")], [0, 1]],
44
45
  ["paymentTerm", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "PaymentTerm")], [0, 1]],
@@ -580,6 +581,7 @@ module DefaultMappingRegistry
580
581
  ["currency", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "Currency")], [0, 1]],
581
582
  ["customerServiceRepName", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "CustomerServiceRepName")], [0, 1]],
582
583
  ["defaultPaymentMethodId", [nil, XSD::QName.new(NsObjectApiZuoraCom, "DefaultPaymentMethodId")], [0, 1]],
584
+ ["paymentGateway", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "PaymentGateway")], [0, 1]],
583
585
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "Name")], [0, 1]],
584
586
  ["notes", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "Notes")], [0, 1]],
585
587
  ["paymentTerm", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "PaymentTerm")], [0, 1]],
data/zuora4r.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{zuora4r}
8
- s.version = "1.0.5"
8
+ s.version = "1.0.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Cloocher"]
12
- s.date = %q{2010-09-23}
12
+ s.date = %q{2010-09-29}
13
13
  s.description = %q{A client for Zuora API}
14
14
  s.email = %q{gene@ning.com}
15
15
  s.executables = ["zuora-query", "zuora-create", "zuora-update", "zuora-bill-run", "zuora-payment-run", "zuora-delete", "zq"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuora4r
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 5
10
- version: 1.0.5
9
+ - 6
10
+ version: 1.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Cloocher
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-09-23 00:00:00 -07:00
18
+ date: 2010-09-29 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency