Class: Selenium::WebDriver::BiDi::Protocol::Script::PrimitiveProtocolValue Private
- Inherits:
-
Serialization::Union
- Object
- Serialization::Union
- Selenium::WebDriver::BiDi::Protocol::Script::PrimitiveProtocolValue
- Defined in:
- lib/selenium/webdriver/bidi/protocol/script.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .bigint ⇒ Object private
- .boolean ⇒ Object private
- .null ⇒ Object private
- .number ⇒ Object private
- .string ⇒ Object private
- .undefined ⇒ Object private
Methods inherited from Serialization::Union
build, discriminator, fallback, from_json, object_only, presence, scalar_values, valid_outbound?, variants
Class Method Details
.bigint ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
274 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 274 def self.bigint(**) = Script::BigIntValue.new(**) |
.boolean ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
273 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 273 def self.boolean(**) = Script::BooleanValue.new(**) |
.null ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
270 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 270 def self.null(**) = Script::NullValue.new(**) |
.number ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
272 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 272 def self.number(**) = Script::NumberValue.new(**) |
.string ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
271 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 271 def self.string(**) = Script::StringValue.new(**) |
.undefined ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
269 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 269 def self.undefined(**) = Script::UndefinedValue.new(**) |