module Ruconomic::API::Activity
Public Class Methods
Returns a handle for the activity 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=Activity_FindByNumber @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/activity.rb, line 47 def self.find_by_number response = invoke('Activity_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 activities corresponding to the given numbers. If an activity with a given number does not exist or if no number is given then the array contains null 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=Activity_FindByNumberList @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/activity.rb, line 59 def self.find_by_number_list response = invoke('Activity_FindByNumberList') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Returns handles for all activities.
@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=Activity_GetAll @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/activity.rb, line 35 def self.get_all response = invoke('Activity_GetAll') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Returns an Activity
data object for a given Activity
. Parameters: entityHandle: A handle for the Activity
.
@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=Activity_GetData @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/activity.rb, line 12 def self.get_data response = invoke('Activity_GetData') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end
Returns Activity
data objects for a given set of Activity
handles. Parameters: entityHandles: An array of the Activity
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=Activity_GetDataArray @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/activity.rb, line 24 def self.get_data_array response = invoke('Activity_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 the activity.
@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=Activity_GetName @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/activity.rb, line 82 def self.get_name response = invoke('Activity_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 the activity. Parameters: activityHandle: Handle for the activity.
@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=Activity_GetNumber @return [Hash] The body content of the SOAP
response.
# File lib/ruconomic/api/activity.rb, line 71 def self.get_number response = invoke('Activity_GetNumber') do |message| raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing" end end