Class: Google::Apis::FirebaserulesV1::Arg

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/firebaserules_v1/classes.rb,
generated/google/apis/firebaserules_v1/representations.rb,
generated/google/apis/firebaserules_v1/representations.rb

Overview

Arg matchers for the mock function.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Arg

Returns a new instance of Arg.



45
46
47
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 45

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#any_valueGoogle::Apis::FirebaserulesV1::Empty

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); The JSON representation for Empty is empty JSON object ```. Corresponds to the JSON propertyanyValue`



38
39
40
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 38

def any_value
  @any_value
end

#exact_valueObject

Argument exactly matches value provided. Corresponds to the JSON property exactValue

Returns:

  • (Object)


43
44
45
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 43

def exact_value
  @exact_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



50
51
52
53
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 50

def update!(**args)
  @any_value = args[:any_value] if args.key?(:any_value)
  @exact_value = args[:exact_value] if args.key?(:exact_value)
end