class LanguageServer::Protocol::Interface::UnregistrationParams
def initialize(unregisterations:)
def initialize(unregisterations:) @attributes = {} @attributes[:unregisterations] = unregisterations @attributes.freeze end
def to_hash
def to_hash attributes end
def to_json(*args)
def to_json(*args) to_hash.to_json(*args) end
def unregisterations
-
(Unregistration[])
-
def unregisterations attributes.fetch(:unregisterations) end