class LanguageServer::Protocol::Interface::LogTraceParams
def initialize(message:, verbose: nil)
def initialize(message:, verbose: nil) @attributes = {} @attributes[:message] = message @attributes[:verbose] = verbose if verbose @attributes.freeze end
def message
-
(string)
-
def message attributes.fetch(:message) end
def to_hash
def to_hash attributes end
def to_json(*args)
def to_json(*args) to_hash.to_json(*args) end
def verbose
-
(string)
-
def verbose attributes.fetch(:verbose) end