class Fastlane::ActionCommandReturn
Encapsulates the result and description of a return object returned by an executed fastlane action
Attributes
Public Class Methods
Source
# File fastlane/lib/fastlane/server/action_command_return.rb, line 8 def initialize(return_value: nil, return_value_type: nil, closure_argument_value: nil) @return_value = return_value @closure_argument_value = closure_argument_value @return_value_type = return_value_type end