From 2169c183f7c2c8526e1656fe330b2878f8a28a38 Mon Sep 17 00:00:00 2001 From: QuadRatNewBy Date: Fri, 22 May 2015 17:15:15 +0300 Subject: [PATCH] Fix for File.List data (`name` to `file_name`) Based on actual API response. --- resources/file.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/file.md b/resources/file.md index a3678e7..7102d01 100644 --- a/resources/file.md +++ b/resources/file.md @@ -51,7 +51,7 @@ status 200 OK }, "data": [ { - "name": "strings.po", + "file_name": "strings.po", "string_count": 236, "last_import": { "id": 123, @@ -61,7 +61,7 @@ status 200 OK "uploaded_at_timestamp": 1381159630 }, { - "name": "en.yml", + "file_name": "en.yml", "string_count": 335, "last_import": { "id": 109, @@ -71,7 +71,7 @@ status 200 OK "uploaded_at_timestamp": 1380976612 }, { - "name": "Manually input", + "file_name": "Manually input", "string_count": 285, }, ...