class Google::Apis::FirebaserulesV1::FunctionCall
Represents a service-defined function call that was invoked during test execution.
Attributes
args[RW]
The arguments that were provided to the function. Corresponds to the JSON property `args` @return [Array<Object>]
function[RW]
Name of the function invoked. Corresponds to the JSON property `function` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebaserules_v1/classes.rb, line 151 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firebaserules_v1/classes.rb, line 156 def update!(**args) @args = args[:args] if args.key?(:args) @function = args[:function] if args.key?(:function) end