class LanguageServer::Protocol::Interface::PreviousResultId


A previous result id in a workspace pull request.

def initialize(uri:, value:)

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

def value

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