summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2012-09-22 14:39:54 +0200
committerPacien2015-12-07 22:48:25 +0100
commit81ea937ae17364208e41a6b103f5091382d4b7b0 (patch)
treea16652be9c53d7d9eddf447803c8cd032e6364ad
parent04e15eef6cdc8230b08c035cf50f1c49b2777819 (diff)
downloadninja-go-local-cloud-81ea937ae17364208e41a6b103f5091382d4b7b0.tar.gz
Fix element JSON date key names (creationDate and modifiedDate).
-rw-r--r--src/ninjacloud.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ninjacloud.go b/src/ninjacloud.go
index a53261a..54027d4 100644
--- a/src/ninjacloud.go
+++ b/src/ninjacloud.go
@@ -215,8 +215,8 @@ type element struct {
215 Type string `json:"type"` 215 Type string `json:"type"`
216 Name string `json:"name"` 216 Name string `json:"name"`
217 Uri string `json:"uri"` 217 Uri string `json:"uri"`
218 CreationDate string `json:"creationdate"` 218 CreationDate string `json:"creationDate"`
219 ModifiedDate string `json:"modifieddate"` 219 ModifiedDate string `json:"modifiedDate"`
220 Size string `json:"size"` 220 Size string `json:"size"`
221 Writable string `json:"writable"` 221 Writable string `json:"writable"`
222 Children []element `json:"children"` 222 Children []element `json:"children"`