class LanguageServer::Protocol::Interface::NotebookDocumentIdentifier


A literal to identify a notebook document in the client.

def initialize(uri:)

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

Returns:
  • (string) -
def uri
  attributes.fetch(:uri)
end