type JsonPointer struct {
// contains filtered or unexported fields
}
func NewJsonPointer(jsonPointerString string) (p JsonPointer, err error)
NewJsonPointer parses the given string JSON pointer and returns an object
func (p *JsonPointer) Delete(document interface{}) (interface{}, error)
Uses the pointer to delete a value from a JSON document
func (p *JsonPointer) Get(document interface{}) (interface{}, reflect.Kind, error)
Uses the pointer to retrieve a value from a JSON document
func (p *JsonPointer) Set(document interface{}, value interface{}) (interface{}, error)
Uses the pointer to update a value from a JSON document
func (p *JsonPointer) String() string
Pointer to string representation function