class LanguageServer::Protocol::Interface::ExecuteCommandClientCapabilities

def dynamic_registration

Returns:
  • (boolean) -
def dynamic_registration
  attributes.fetch(:dynamicRegistration)
end

def initialize(dynamic_registration: nil)

def initialize(dynamic_registration: nil)
  @attributes = {}
  @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration
  @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