ruconomic 0.9.1 → 0.9.2
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/README.md +3 -3
- data/lib/ruconomic/api/account.rb +86 -86
- data/lib/ruconomic/api/accounting_period.rb +18 -18
- data/lib/ruconomic/api/accounting_year.rb +26 -26
- data/lib/ruconomic/api/activity.rb +14 -14
- data/lib/ruconomic/api/bank_payment_type.rb +16 -16
- data/lib/ruconomic/api/budget_figure.rb +56 -56
- data/lib/ruconomic/api/cash_book.rb +38 -38
- data/lib/ruconomic/api/cash_book_entry.rb +118 -118
- data/lib/ruconomic/api/company.rb +48 -48
- data/lib/ruconomic/api/cost_type.rb +22 -22
- data/lib/ruconomic/api/cost_type_group.rb +18 -18
- data/lib/ruconomic/api/creditor.rb +114 -114
- data/lib/ruconomic/api/creditor_contact.rb +44 -44
- data/lib/ruconomic/api/creditor_entry.rb +40 -40
- data/lib/ruconomic/api/creditor_group.rb +34 -34
- data/lib/ruconomic/api/currency.rb +10 -10
- data/lib/ruconomic/api/current_invoice.rb +184 -184
- data/lib/ruconomic/api/current_invoice_line.rb +72 -72
- data/lib/ruconomic/api/current_supplier_invoice.rb +18 -18
- data/lib/ruconomic/api/current_supplier_invoice_line.rb +14 -14
- data/lib/ruconomic/api/debtor.rb +152 -152
- data/lib/ruconomic/api/debtor_contact.rb +54 -54
- data/lib/ruconomic/api/debtor_entry.rb +38 -38
- data/lib/ruconomic/api/debtor_group.rb +38 -38
- data/lib/ruconomic/api/delivery_location.rb +56 -56
- data/lib/ruconomic/api/department.rb +32 -32
- data/lib/ruconomic/api/distribution_key.rb +30 -30
- data/lib/ruconomic/api/document_archive_category.rb +26 -26
- data/lib/ruconomic/api/employee.rb +70 -70
- data/lib/ruconomic/api/employee_group.rb +32 -32
- data/lib/ruconomic/api/entry.rb +52 -52
- data/lib/ruconomic/api/extended_vat_zone.rb +12 -12
- data/lib/ruconomic/api/inventory_location.rb +14 -14
- data/lib/ruconomic/api/invoice.rb +115 -111
- data/lib/ruconomic/api/invoice_line.rb +40 -40
- data/lib/ruconomic/api/key_figure_code.rb +16 -16
- data/lib/ruconomic/api/mileage_entry.rb +52 -52
- data/lib/ruconomic/api/order.rb +194 -194
- data/lib/ruconomic/api/order_line.rb +74 -74
- data/lib/ruconomic/api/price_group.rb +32 -32
- data/lib/ruconomic/api/product.rb +88 -88
- data/lib/ruconomic/api/product_group.rb +44 -44
- data/lib/ruconomic/api/product_price.rb +26 -26
- data/lib/ruconomic/api/project.rb +74 -74
- data/lib/ruconomic/api/project_group.rb +18 -18
- data/lib/ruconomic/api/quotation.rb +190 -190
- data/lib/ruconomic/api/quotation_line.rb +74 -74
- data/lib/ruconomic/api/report_code.rb +12 -12
- data/lib/ruconomic/api/report_code_set.rb +14 -14
- data/lib/ruconomic/api/scanned_document.rb +28 -28
- data/lib/ruconomic/api/subscriber.rb +78 -78
- data/lib/ruconomic/api/subscription.rb +62 -62
- data/lib/ruconomic/api/subscription_line.rb +50 -50
- data/lib/ruconomic/api/sum_interval.rb +26 -26
- data/lib/ruconomic/api/template_collection.rb +12 -12
- data/lib/ruconomic/api/term_of_payment.rb +50 -50
- data/lib/ruconomic/api/time_entry.rb +42 -42
- data/lib/ruconomic/api/unit.rb +30 -30
- data/lib/ruconomic/api/vat_account.rb +24 -24
- data/lib/ruconomic/api.rb +12 -13
- data/lib/ruconomic/version.rb +1 -1
- data/ruconomic.gemspec +1 -1
- metadata +20 -21
@@ -6,299 +6,299 @@ module Ruconomic
|
|
6
6
|
# Gets the number of a subscription line.
|
7
7
|
# Parameters: SubscriptionLineHandle: Handle for the subscription line.
|
8
8
|
#
|
9
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
9
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
10
10
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetNumber
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_number
|
13
13
|
response = invoke('SubscriptionLine_GetNumber') do |message|
|
14
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
14
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
18
|
# Gets a handle for the subscription of a subscription line.
|
19
19
|
# Parameters: SubscriptionLineHandle: Handle for the subscription line.
|
20
20
|
#
|
21
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
21
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
22
22
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetSubscription
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.get_subscription
|
25
25
|
response = invoke('SubscriptionLine_GetSubscription') do |message|
|
26
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
26
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
# Gets a handle for the product of a subscription line.
|
31
31
|
# Parameters: SubscriptionLineHandle: Handle for the subscription line.
|
32
32
|
#
|
33
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
33
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
34
34
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetProduct
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.get_product
|
37
37
|
response = invoke('SubscriptionLine_GetProduct') do |message|
|
38
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
38
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
42
|
# Sets the product of a subscription line. Setting the product also sets the unit cost price to the cost price of the product. The product must be set before setting the quantity and the unit net price.
|
43
43
|
# Parameters: SubscriptionLineHandle: Handle for the subscription line. valueHandle: Handle for the new product of the subscription line.
|
44
44
|
#
|
45
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
45
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
46
46
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_SetProduct
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.set_product
|
49
49
|
response = invoke('SubscriptionLine_SetProduct') do |message|
|
50
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
50
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
54
|
# Gets the primary quantity of a subscription line.
|
55
55
|
# Parameters: subscriptionLineHandle: Handle for the subscription line.
|
56
56
|
#
|
57
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
57
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
58
58
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetQuantity
|
59
59
|
# @return [Hash] The body content of the SOAP response.
|
60
60
|
def self.get_quantity
|
61
61
|
response = invoke('SubscriptionLine_GetQuantity') do |message|
|
62
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
62
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
66
|
# Sets the primary quantity of a subscription line. The product of the subscription line must be set before setting this property.
|
67
67
|
# Parameters: subscriptionLineHandle: Handle for the subscription line. value: The new primary quantity of the subscription line.
|
68
68
|
#
|
69
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
69
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
70
70
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_SetQuantity
|
71
71
|
# @return [Hash] The body content of the SOAP response.
|
72
72
|
def self.set_quantity
|
73
73
|
response = invoke('SubscriptionLine_SetQuantity') do |message|
|
74
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
74
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
78
|
# Sets the department of a subscription line. The department is only accessible when there is access to the Dimension add-on module. The department cannot be set when the distribution key is set.
|
79
79
|
# Parameters: subscriptionLineHandle: Handle for the subscription line. value: Handle for the new department of the subscription line.
|
80
80
|
#
|
81
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
81
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
82
82
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_SetDepartment
|
83
83
|
# @return [Hash] The body content of the SOAP response.
|
84
84
|
def self.set_department
|
85
85
|
response = invoke('SubscriptionLine_SetDepartment') do |message|
|
86
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
86
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
90
|
# Gets a handle for the department of a subscription line. The department is only accessible when there is access to the Dimension add-on module.
|
91
91
|
# Parameters: subscriptionLineHandle: Handle for the subscription line.
|
92
92
|
#
|
93
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
93
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
94
94
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetDepartment
|
95
95
|
# @return [Hash] The body content of the SOAP response.
|
96
96
|
def self.get_department
|
97
97
|
response = invoke('SubscriptionLine_GetDepartment') do |message|
|
98
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
98
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
99
99
|
end
|
100
100
|
end
|
101
101
|
|
102
102
|
# Sets the description of a subscription line.
|
103
103
|
# Parameters: subscriptionLineHandle: Handle for the subscription line. value: The new description of the subscription line.
|
104
104
|
#
|
105
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
105
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
106
106
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_SetProductName
|
107
107
|
# @return [Hash] The body content of the SOAP response.
|
108
108
|
def self.set_product_name
|
109
109
|
response = invoke('SubscriptionLine_SetProductName') do |message|
|
110
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
110
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
114
114
|
# Gets the description of a subscription line.
|
115
115
|
# Parameters: subscriptionLineHandle: Handle for the subscription line.
|
116
116
|
#
|
117
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
117
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
118
118
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetProductName
|
119
119
|
# @return [Hash] The body content of the SOAP response.
|
120
120
|
def self.get_product_name
|
121
121
|
response = invoke('SubscriptionLine_GetProductName') do |message|
|
122
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
122
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
123
123
|
end
|
124
124
|
end
|
125
125
|
|
126
126
|
# Gets the special price of a product.
|
127
127
|
# Parameters: subscriptionLineHandle: Handle for the current subscription line.
|
128
128
|
#
|
129
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
129
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
130
130
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetSpecialPrice
|
131
131
|
# @return [Hash] The body content of the SOAP response.
|
132
132
|
def self.get_special_price
|
133
133
|
response = invoke('SubscriptionLine_GetSpecialPrice') do |message|
|
134
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
134
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
138
|
# Sets the special price of a product.
|
139
139
|
# Parameters: subscriptionLineHandle: Handle for the current subscription line.
|
140
140
|
#
|
141
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
141
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
142
142
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_SetSpecialPrice
|
143
143
|
# @return [Hash] The body content of the SOAP response.
|
144
144
|
def self.set_special_price
|
145
145
|
response = invoke('SubscriptionLine_SetSpecialPrice') do |message|
|
146
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
146
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
147
147
|
end
|
148
148
|
end
|
149
149
|
|
150
150
|
# Creates a new subscription line.
|
151
151
|
# Parameters: subscriptionHandle: Handle for a subscription line.
|
152
152
|
#
|
153
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
153
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
154
154
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_Create
|
155
155
|
# @return [Hash] The body content of the SOAP response.
|
156
156
|
def self.create
|
157
157
|
response = invoke('SubscriptionLine_Create') do |message|
|
158
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
158
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|
162
162
|
# Returns handles for subscription lines that use a given products.
|
163
163
|
# Parameters: product: The product to search for.
|
164
164
|
#
|
165
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
165
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
166
166
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_FindByProduct
|
167
167
|
# @return [Hash] The body content of the SOAP response.
|
168
168
|
def self.find_by_product
|
169
169
|
response = invoke('SubscriptionLine_FindByProduct') do |message|
|
170
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
170
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
171
171
|
end
|
172
172
|
end
|
173
173
|
|
174
174
|
# Returns handles for subscription lines that use a given set of products.
|
175
175
|
# Parameters: products: The products to search for.
|
176
176
|
#
|
177
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
177
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
178
178
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_FindByProductList
|
179
179
|
# @return [Hash] The body content of the SOAP response.
|
180
180
|
def self.find_by_product_list
|
181
181
|
response = invoke('SubscriptionLine_FindByProductList') do |message|
|
182
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
182
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
183
183
|
end
|
184
184
|
end
|
185
185
|
|
186
186
|
# Returns handles for subscription lines that use a given subscriptions.
|
187
187
|
# Parameters: subscription: The subscription to search for.
|
188
188
|
#
|
189
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
189
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
190
190
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_FindBySubscription
|
191
191
|
# @return [Hash] The body content of the SOAP response.
|
192
192
|
def self.find_by_subscription
|
193
193
|
response = invoke('SubscriptionLine_FindBySubscription') do |message|
|
194
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
194
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
195
195
|
end
|
196
196
|
end
|
197
197
|
|
198
198
|
# Returns handles for subscription lines that use a given set of subscriptions.
|
199
199
|
# Parameters: subscriptions: The subscriptions to search for.
|
200
200
|
#
|
201
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
201
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
202
202
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_FindBySubscriptonList
|
203
203
|
# @return [Hash] The body content of the SOAP response.
|
204
204
|
def self.find_by_subscripton_list
|
205
205
|
response = invoke('SubscriptionLine_FindBySubscriptonList') do |message|
|
206
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
206
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
207
207
|
end
|
208
208
|
end
|
209
209
|
|
210
210
|
# Returns handles for all current subsciption lines.
|
211
211
|
#
|
212
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
212
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
213
213
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetAll
|
214
214
|
# @return [Hash] The body content of the SOAP response.
|
215
215
|
def self.get_all
|
216
216
|
response = invoke('SubscriptionLine_GetAll') do |message|
|
217
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
217
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
218
218
|
end
|
219
219
|
end
|
220
220
|
|
221
221
|
# Deletes a subscription line.
|
222
222
|
# Parameters: SubscriptionLineHandle: Handle for the subscription line.
|
223
223
|
#
|
224
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
224
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
225
225
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_Delete
|
226
226
|
# @return [Hash] The body content of the SOAP response.
|
227
227
|
def self.delete
|
228
228
|
response = invoke('SubscriptionLine_Delete') do |message|
|
229
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
229
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
230
230
|
end
|
231
231
|
end
|
232
232
|
|
233
233
|
# Creates a new subscription line from a data object.
|
234
234
|
# Parameters: data: The data object that specifies the properties of the new subscription line.
|
235
235
|
#
|
236
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
236
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
237
237
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_CreateFromData
|
238
238
|
# @return [Hash] The body content of the SOAP response.
|
239
239
|
def self.create_from_data
|
240
240
|
response = invoke('SubscriptionLine_CreateFromData') do |message|
|
241
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
241
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
242
242
|
end
|
243
243
|
end
|
244
244
|
|
245
245
|
# Creates new subscription lines from data objects.
|
246
246
|
# Parameters: dataArray: The array of data objects that specifies the properties of the new subscription lines.
|
247
247
|
#
|
248
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
248
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
249
249
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_CreateFromDataArray
|
250
250
|
# @return [Hash] The body content of the SOAP response.
|
251
251
|
def self.create_from_data_array
|
252
252
|
response = invoke('SubscriptionLine_CreateFromDataArray') do |message|
|
253
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
253
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
254
254
|
end
|
255
255
|
end
|
256
256
|
|
257
257
|
# Update subscription lines from data objects.
|
258
258
|
# Parameters: dataArray: The array of data objects.
|
259
259
|
#
|
260
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
260
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
261
261
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_UpdateFromDataArray
|
262
262
|
# @return [Hash] The body content of the SOAP response.
|
263
263
|
def self.update_from_data_array
|
264
264
|
response = invoke('SubscriptionLine_UpdateFromDataArray') do |message|
|
265
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
265
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
266
266
|
end
|
267
267
|
end
|
268
268
|
|
269
269
|
# Updates a subscription line from a data object.
|
270
270
|
# Parameters: data: The data object.
|
271
271
|
#
|
272
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
272
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
273
273
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_UpdateFromData
|
274
274
|
# @return [Hash] The body content of the SOAP response.
|
275
275
|
def self.update_from_data
|
276
276
|
response = invoke('SubscriptionLine_UpdateFromData') do |message|
|
277
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
277
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
278
278
|
end
|
279
279
|
end
|
280
280
|
|
281
281
|
# Returns a subscription line data object for a given subscription line.
|
282
282
|
# Parameters: entityHandle: A handle for the subscription line.
|
283
283
|
#
|
284
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
284
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
285
285
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetData
|
286
286
|
# @return [Hash] The body content of the SOAP response.
|
287
287
|
def self.get_data
|
288
288
|
response = invoke('SubscriptionLine_GetData') do |message|
|
289
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
289
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
290
290
|
end
|
291
291
|
end
|
292
292
|
|
293
293
|
# Returns subscription line data objects for subscription lines.
|
294
294
|
# Parameters: entityHandles: The array of subscription line handles.
|
295
295
|
#
|
296
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
296
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
297
297
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SubscriptionLine_GetDataArray
|
298
298
|
# @return [Hash] The body content of the SOAP response.
|
299
299
|
def self.get_data_array
|
300
300
|
response = invoke('SubscriptionLine_GetDataArray') do |message|
|
301
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
301
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
302
302
|
end
|
303
303
|
end
|
304
304
|
|
@@ -6,156 +6,156 @@ module Ruconomic
|
|
6
6
|
# Creates a new sum interval from a data object.
|
7
7
|
# Parameters: data: The data object that specifies the properties of the new sum interval.
|
8
8
|
#
|
9
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
9
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
10
10
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_CreateFromData
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.create_from_data
|
13
13
|
response = invoke('SumInterval_CreateFromData') do |message|
|
14
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
14
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
18
|
# Creates new sum interval from data objects.
|
19
19
|
# Parameters: dataArray: The array of data objects that specifies the properties of the new sum interval.
|
20
20
|
#
|
21
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
21
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
22
22
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_CreateFromDataArray
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.create_from_data_array
|
25
25
|
response = invoke('SumInterval_CreateFromDataArray') do |message|
|
26
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
26
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
# Update sum interval entities from data objects.
|
31
31
|
# Parameters: dataArray: The array of data objects.
|
32
32
|
#
|
33
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
33
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
34
34
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_UpdateFromDataArray
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.update_from_data_array
|
37
37
|
response = invoke('SumInterval_UpdateFromDataArray') do |message|
|
38
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
38
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
42
|
# Updates a sum interval from a data object.
|
43
43
|
# Parameters: data: The data object.
|
44
44
|
#
|
45
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
45
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
46
46
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_UpdateFromData
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.update_from_data
|
49
49
|
response = invoke('SumInterval_UpdateFromData') do |message|
|
50
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
50
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
54
|
# Returns a sum interval data object for a given sum interval.
|
55
55
|
# Parameters: entityHandle: A handle for the sum interval.
|
56
56
|
#
|
57
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
57
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
58
58
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_GetData
|
59
59
|
# @return [Hash] The body content of the SOAP response.
|
60
60
|
def self.get_data
|
61
61
|
response = invoke('SumInterval_GetData') do |message|
|
62
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
62
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
66
|
# Returns sum interval data objects for a given set of sum interval handles.
|
67
67
|
# Parameters: entityHandles: An array of the sum interval handles.
|
68
68
|
#
|
69
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
69
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
70
70
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_GetDataArray
|
71
71
|
# @return [Hash] The body content of the SOAP response.
|
72
72
|
def self.get_data_array
|
73
73
|
response = invoke('SumInterval_GetDataArray') do |message|
|
74
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
74
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
78
|
# Creates a new sum interval.
|
79
79
|
# Parameters: account: The account the sum interval is for. fromAccount: The from-account of the sum interval. toAccount: The to-account of the sum interval.
|
80
80
|
#
|
81
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
81
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
82
82
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_Create
|
83
83
|
# @return [Hash] The body content of the SOAP response.
|
84
84
|
def self.create
|
85
85
|
response = invoke('SumInterval_Create') do |message|
|
86
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
86
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
90
|
# Deletes a sum interval.
|
91
91
|
# Parameters: sumIntervalHandle: Handle for the sum interval.
|
92
92
|
#
|
93
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
93
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
94
94
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_Delete
|
95
95
|
# @return [Hash] The body content of the SOAP response.
|
96
96
|
def self.delete
|
97
97
|
response = invoke('SumInterval_Delete') do |message|
|
98
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
98
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
99
99
|
end
|
100
100
|
end
|
101
101
|
|
102
102
|
# Gets a handle for the account of a sum interval.
|
103
103
|
# Parameters: sumIntervalHandle: Handle for the sum interval.
|
104
104
|
#
|
105
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
105
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
106
106
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_GetAccount
|
107
107
|
# @return [Hash] The body content of the SOAP response.
|
108
108
|
def self.get_account
|
109
109
|
response = invoke('SumInterval_GetAccount') do |message|
|
110
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
110
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
114
114
|
# Gets the from-account of a sum interval.
|
115
115
|
# Parameters: sumIntervalHandle: Handle for the sum interval.
|
116
116
|
#
|
117
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
117
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
118
118
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_GetFromAccount
|
119
119
|
# @return [Hash] The body content of the SOAP response.
|
120
120
|
def self.get_from_account
|
121
121
|
response = invoke('SumInterval_GetFromAccount') do |message|
|
122
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
122
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
123
123
|
end
|
124
124
|
end
|
125
125
|
|
126
126
|
# Sets the from-account of a sum interval.
|
127
127
|
# Parameters: sumIntervalHandle: Handle for the sum interval. value: The new from-account of the sum interval.
|
128
128
|
#
|
129
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
129
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
130
130
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_SetFromAccount
|
131
131
|
# @return [Hash] The body content of the SOAP response.
|
132
132
|
def self.set_from_account
|
133
133
|
response = invoke('SumInterval_SetFromAccount') do |message|
|
134
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
134
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
138
|
# Gets the to-account of a sum interval.
|
139
139
|
# Parameters: sumIntervalHandle: Handle for the sum interval.
|
140
140
|
#
|
141
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
141
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
142
142
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_GetToAccount
|
143
143
|
# @return [Hash] The body content of the SOAP response.
|
144
144
|
def self.get_to_account
|
145
145
|
response = invoke('SumInterval_GetToAccount') do |message|
|
146
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
146
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
147
147
|
end
|
148
148
|
end
|
149
149
|
|
150
150
|
# Sets the to-account of a sum interval.
|
151
151
|
# Parameters: sumIntervalHandle: Handle for the sum interval. value: The new to-account of the sum interval.
|
152
152
|
#
|
153
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
153
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
154
154
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=SumInterval_SetToAccount
|
155
155
|
# @return [Hash] The body content of the SOAP response.
|
156
156
|
def self.set_to_account
|
157
157
|
response = invoke('SumInterval_SetToAccount') do |message|
|
158
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
158
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|