@@ -46,7 +46,7 @@ class ReferenceTransaction < Model
4646 end
4747
4848 class DunningAttempt < Model
49- attr_accessor :attempt , :transaction_id , :dunning_type , :created_at , :txn_status , :txn_amount
49+ attr_accessor :attempt , :transaction_id , :dunning_type , :created_at , :txn_status , :txn_amount , :retry_engine
5050 end
5151
5252 class AppliedCredit < Model
@@ -145,6 +145,7 @@ def self.charge_addon(params, env=nil, headers={})
145145 Request . send ( 'post' , uri_path ( "invoices" , "charge_addon" ) , params , env , headers , nil , false , jsonKeys , options )
146146 end
147147
148+ # @deprecated This method is deprecated and will be removed in a future version.
148149 def self . create_for_charge_item ( params , env = nil , headers = { } )
149150 jsonKeys = {
150151 }
@@ -233,13 +234,15 @@ def self.list(params={}, env=nil, headers={})
233234 Request . send_list_request ( 'get' , uri_path ( "invoices" ) , params , env , headers , nil , false , jsonKeys , options )
234235 end
235236
237+ # @deprecated This method is deprecated and will be removed in a future version.
236238 def self . invoices_for_customer ( id , params = { } , env = nil , headers = { } )
237239 jsonKeys = {
238240 }
239241 options = { }
240242 Request . send ( 'get' , uri_path ( "customers" , id . to_s , "invoices" ) , params , env , headers , nil , false , jsonKeys , options )
241243 end
242244
245+ # @deprecated This method is deprecated and will be removed in a future version.
243246 def self . invoices_for_subscription ( id , params = { } , env = nil , headers = { } )
244247 jsonKeys = {
245248 }
0 commit comments