killbill-client 0.5.5 → 0.5.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.
- checksums.yaml +4 -4
- data/lib/killbill_client/models/account.rb +12 -13
- data/lib/killbill_client/version.rb +1 -1
- 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: b11bb5f4d2ca2689babcb02b317cf6b2fd435171
|
4
|
+
data.tar.gz: 25e55679617185f1a4ae6413706eea33b72674c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a72b8c9399474f46d72b4d813aa3fda99aeb15bfbddfaf97c915ecf337b185075e70e9daedfe7561104a5a9a02ee8b955f508746bb47db681b6e493f830b0adf
|
7
|
+
data.tar.gz: db0d6396de70db7f56c37773ec8363b1946e2762c91150dcd22d7a9352c01544b4526886b89e2df184c2d8cca24e0faaf4ed1ee9a05a75ecb2ab54bebcdf5ab7
|
@@ -125,52 +125,51 @@ module KillBillClient
|
|
125
125
|
end
|
126
126
|
|
127
127
|
|
128
|
-
def auto_pay_off?(options)
|
128
|
+
def auto_pay_off?(options = {})
|
129
129
|
control_tag_off?(AUTO_PAY_OFF_ID, options)
|
130
130
|
end
|
131
131
|
|
132
|
-
def set_auto_pay_off(user = nil, reason = nil, comment = nil, options)
|
132
|
+
def set_auto_pay_off(user = nil, reason = nil, comment = nil, options = {})
|
133
133
|
add_tag_from_definition_id(AUTO_PAY_OFF_ID, user, reason, comment, options)
|
134
134
|
end
|
135
135
|
|
136
|
-
def auto_invoicing?(options)
|
136
|
+
def auto_invoicing?(options = {})
|
137
137
|
control_tag_off?(AUTO_INVOICING_ID, options)
|
138
138
|
end
|
139
139
|
|
140
|
-
def set_auto_invoicing(user = nil, reason = nil, comment = nil, options)
|
140
|
+
def set_auto_invoicing(user = nil, reason = nil, comment = nil, options = {})
|
141
141
|
add_tag_from_definition_id(AUTO_INVOICING_ID, user, reason, comment, options)
|
142
142
|
end
|
143
143
|
|
144
|
-
def overdue_enforcement_off?(options)
|
144
|
+
def overdue_enforcement_off?(options = {})
|
145
145
|
control_tag_off?(OVERDUE_ENFORCEMENT_OFF_ID, options)
|
146
146
|
end
|
147
147
|
|
148
|
-
def set_overdue_enforcement_off(user = nil, reason = nil, comment = nil, options)
|
148
|
+
def set_overdue_enforcement_off(user = nil, reason = nil, comment = nil, options = {})
|
149
149
|
add_tag_from_definition_id(OVERDUE_ENFORCEMENT_OFF_ID, user, reason, comment, options)
|
150
150
|
end
|
151
151
|
|
152
|
-
def written_off?(options)
|
152
|
+
def written_off?(options = {})
|
153
153
|
control_tag_off?(WRITTEN_OFF_ID, options)
|
154
154
|
end
|
155
155
|
|
156
|
-
def set_written_off( user = nil, reason = nil, comment = nil, options)
|
156
|
+
def set_written_off( user = nil, reason = nil, comment = nil, options = {})
|
157
157
|
add_tag_from_definition_id(WRITTEN_OFF_ID, user, reason, comment, options)
|
158
158
|
end
|
159
159
|
|
160
|
-
def manual_pay?(options)
|
160
|
+
def manual_pay?(options = {})
|
161
161
|
control_tag_off?(MANUAL_PAY_ID, options)
|
162
162
|
end
|
163
163
|
|
164
|
-
def set_manual_pay(user = nil, reason = nil, comment = nil, options)
|
164
|
+
def set_manual_pay(user = nil, reason = nil, comment = nil, options = {})
|
165
165
|
add_tag_from_definition_id(MANUAL_PAY_ID, user, reason, comment, options)
|
166
166
|
end
|
167
167
|
|
168
|
-
|
169
|
-
def test?(options)
|
168
|
+
def test?(options = {})
|
170
169
|
control_tag_off?(TEST_ID, options)
|
171
170
|
end
|
172
171
|
|
173
|
-
def set_test(user = nil, reason = nil, comment = nil, options)
|
172
|
+
def set_test(user = nil, reason = nil, comment = nil, options = {})
|
174
173
|
add_tag_from_definition_id(TEST_ID, user, reason, comment, options)
|
175
174
|
end
|
176
175
|
|