module Ruconomic::API::BankPaymentType
Public Class Methods
Returns handles for the bank payment types with the given name. Parameters: name: The name to search for.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_FindByName @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 47 def self.find_by_name response = invoke('BankPaymentType_FindByName') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Returns a handle for the bank payment type with the given number. Parameters: number: The number to search for.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_FindByNumber @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 59 def self.find_by_number response = invoke('BankPaymentType_FindByNumber') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Returns an array with handles for the bank payment types corresponding to the given bank payment type numbers. If a bank payment type with a given number does not exist or if no number is given then the array contains nothing at that index. Parameters: numbers: The numbers to search for.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_FindByNumberList @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 71 def self.find_by_number_list response = invoke('BankPaymentType_FindByNumberList') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Return handles for all bank payment types.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_GetAll @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 35 def self.get_all response = invoke('BankPaymentType_GetAll') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Returns a bank payment type data object for a given bank payment type. Parameters: entityHandle: A handle for the bank payment type.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_GetData @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 12 def self.get_data response = invoke('BankPaymentType_GetData') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Returns bank payment type data objects for a given set of bank payment type handles. Parameters: entityHandles: An array of the bank payment type handles.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_GetDataArray @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 24 def self.get_data_array response = invoke('BankPaymentType_GetDataArray') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Gets the name of a bank payment type. Parameters: bankPaymentTypeHandle: Handle for the bank payment type.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_GetName @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 95 def self.get_name response = invoke('BankPaymentType_GetName') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Gets the number of a bank payment type. Parameters: bankPaymentTypeHandle: Handle for the bank payment type.
@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_GetNumber @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/bank_payment_type.rb, line 83 def self.get_number response = invoke('BankPaymentType_GetNumber') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end