active_zuora 1.4.19 → 1.4.20
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.
- checksums.yaml +4 -4
- data/active_zuora.gemspec +1 -1
- data/lib/zuora/ZUORA.rb +3 -1
- data/lib/zuora/ZUORAMappingRegistry.rb +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 922d4a8836aaaf0936c7b0213c1cf934b7eb6c78
|
|
4
|
+
data.tar.gz: c1486fb0e062a37f2a3c6f7661e6aea9ce9b074d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e40e718f700560b82d42ec2e00eb13905bf7ad6eb373e966e9ab64ad39b28c20bb15479e2a72f98bada5da4da3ba5d5f5298beb732bc2a96f7fb14ab13bef19
|
|
7
|
+
data.tar.gz: 12365965ec6043a0c904946fe35be3350d9c7f09daa8add5e01c7534d8854f62a6cc359277c5f71bf1015420508e454afaa2b0aaf3eeefa9a2e4b88b1b195179
|
data/active_zuora.gemspec
CHANGED
data/lib/zuora/ZUORA.rb
CHANGED
|
@@ -927,8 +927,9 @@ class Subscription < ZObject
|
|
|
927
927
|
attr_accessor :termType
|
|
928
928
|
attr_accessor :version
|
|
929
929
|
attr_accessor :isInvoiceSeparate
|
|
930
|
+
attr_accessor :invoiceOwnerId
|
|
930
931
|
|
|
931
|
-
def initialize(fieldsToNull = [], id = nil, accountId = nil, autoRenew = nil, cancelledDate = nil, createdDate = nil, contractAcceptanceDate = nil, contractEffectiveDate = nil, initialTerm = nil, name = nil, notes = nil, originalId = nil, previousSubscriptionId = nil, renewalTerm = nil, serviceActivationDate = nil, subscriptionEndDate = nil, status = nil, termStartDate = nil, termEndDate = nil, termType = nil, version = nil, isInvoiceSeparate = nil)
|
|
932
|
+
def initialize(fieldsToNull = [], id = nil, accountId = nil, autoRenew = nil, cancelledDate = nil, createdDate = nil, contractAcceptanceDate = nil, contractEffectiveDate = nil, initialTerm = nil, name = nil, notes = nil, originalId = nil, previousSubscriptionId = nil, renewalTerm = nil, serviceActivationDate = nil, subscriptionEndDate = nil, status = nil, termStartDate = nil, termEndDate = nil, termType = nil, version = nil, isInvoiceSeparate = nil, invoiceOwnerId = nil)
|
|
932
933
|
@fieldsToNull = fieldsToNull
|
|
933
934
|
@id = id
|
|
934
935
|
@accountId = accountId
|
|
@@ -951,6 +952,7 @@ class Subscription < ZObject
|
|
|
951
952
|
@termType = termType
|
|
952
953
|
@version = version
|
|
953
954
|
@isInvoiceSeparate = isInvoiceSeparate
|
|
955
|
+
@invoiceOwnerId = invoiceOwnerId
|
|
954
956
|
end
|
|
955
957
|
end
|
|
956
958
|
|
|
@@ -454,7 +454,8 @@ module DefaultMappingRegistry
|
|
|
454
454
|
["termStartDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsObjectApiZuoraCom, "TermStartDate")], [0, 1]],
|
|
455
455
|
["termEndDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsObjectApiZuoraCom, "TermEndDate")], [0, 1]],
|
|
456
456
|
["version", ["SOAP::SOAPInt", XSD::QName.new(NsObjectApiZuoraCom, "Version")], [0, 1]],
|
|
457
|
-
["isInvoiceSeparate", ["SOAP::SOAPBoolean", XSD::QName.new(NsObjectApiZuoraCom, "IsInvoiceSeparate")], [0, 1]]
|
|
457
|
+
["isInvoiceSeparate", ["SOAP::SOAPBoolean", XSD::QName.new(NsObjectApiZuoraCom, "IsInvoiceSeparate")], [0, 1]],
|
|
458
|
+
["invoiceOwnerId", [nil, XSD::QName.new(NsObjectApiZuoraCom, "invoiceOwnerId")], [0, 1]]
|
|
458
459
|
]
|
|
459
460
|
)
|
|
460
461
|
|
|
@@ -1184,7 +1185,8 @@ module DefaultMappingRegistry
|
|
|
1184
1185
|
["termEndDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsObjectApiZuoraCom, "TermEndDate")], [0, 1]],
|
|
1185
1186
|
["termType", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "TermType")], [0, 1]],
|
|
1186
1187
|
["version", ["SOAP::SOAPInt", XSD::QName.new(NsObjectApiZuoraCom, "Version")], [0, 1]],
|
|
1187
|
-
["isInvoiceSeparate", ["SOAP::SOAPBoolean", XSD::QName.new(NsObjectApiZuoraCom, "IsInvoiceSeparate")], [0, 1]]
|
|
1188
|
+
["isInvoiceSeparate", ["SOAP::SOAPBoolean", XSD::QName.new(NsObjectApiZuoraCom, "IsInvoiceSeparate")], [0, 1]],
|
|
1189
|
+
["invoiceOwnerId", [nil, XSD::QName.new(NsObjectApiZuoraCom, "invoiceOwnerId")], [0, 1]]
|
|
1188
1190
|
]
|
|
1189
1191
|
)
|
|
1190
1192
|
|