-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrelationships.go
41 lines (35 loc) · 1.04 KB
/
relationships.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package jsonapi
import "encoding/json"
// Relationships represents a JSON API relationships object
//
// http://jsonapi.org/format/#document-resource-object-relationships
type Relationships map[string]*Relationship
// Relationship represents a member of the JSON API relationships object.
type Relationship struct {
Links Links `json:"links,omitempty"`
Data json.RawMessage `json:"data,omitempty"`
Meta map[string]interface{} `json:"meta,omitempty"`
}
// Add adds the key, value pair to the meta object.
// It overwrites any existing values associated with key.
func (rs Relationships) Add(key string, r *Relationship) {
if rs == nil {
return
}
rs[key] = r
}
// Get returns the value associated with the given key and an existence check.
func (rs Relationships) Get(key string) (*Relationship, bool) {
if rs == nil {
return nil, false
}
r, ok := rs[key]
return r, ok
}
// Delete deletes the value associated with the given key.
func (rs Relationships) Delete(key string) {
if rs == nil {
return
}
delete(rs, key)
}