mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
Serializating the Tag structure
This commit is contained in:
parent
e68199efb3
commit
bf6cf4312c
1 changed files with 9 additions and 0 deletions
9
v5/marshaling.go
Normal file
9
v5/marshaling.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package v5
|
||||
|
||||
import "encoding/json"
|
||||
|
||||
func (t Tag) MarshalJSON() ([]byte, error) {
|
||||
name, err := json.Marshal(t.Name)
|
||||
|
||||
return name, err
|
||||
}
|
Loading…
Add table
Reference in a new issue