Aravind

Results 14 comments of Aravind

@andrii-bodnar Starting out with open source contributions, I would like to take this up - by when would you want this to be done? Also I believe that this is...

Yes @andrii-bodnar , I absolutely get your point - my question was more around how would the request url would look like `https:///api//resource?orderBy=createdAt desc,name,priority asc,title desc` probably?

Thanks, please assign this to me.

@andrii-bodnar I propose to allow users to pass in a Linked Hash map for specifying ordering key and the corresponding ordering sequence(ASC/DESC - enums) . Or would it be better...

``` // Client side code Map orderByMap = new LinkedHashmap(); orderByMap.put(name, SortOrder.DESC) orderByMap.put(id, SortOrder.ASC) // Method Signature listProjects(Long groupId, Integer hasManagerAccess, Integer limit, Integer offset, LinkedHashMap orderByMap) ``` @andrii-bodnar Above...

A wrapper over the **put()** method of Map interface should suffice. A simpler solution would be user entering a key with no value (null type) into the map and then...

Hello @andrii-bodnar , a couple of endpoints are available to only enterprise customers, while I am on a free plan. Can I get access to some test account (or temporarily...

@andrii-bodnar Have a question: The sort keys for each of the components are different. For example **_groups_** can be sorted by id,name,description,createdAt,updatedAt , whereas **_directories_** are sorted by id, name,title,createdAt,updatedAt,exportPattern,priority....

@andrii-bodnar Done with the dev part of the code change, for unit tests, we need to change the JSON content, by adding more than response to account for list of...

@andrii-bodnar Didn't quite get your point- so let me elaborate: In line 106 of the class [https://github.com/crowdin/crowdin-api-client-java/blob/master/src/test/java/com/crowdin/client/projectsgroups/ProjectsGroupsApiTest.java](https://github.com/crowdin/crowdin-api-client-java/blob/master/src/test/java/com/crowdin/client/projectsgroups/ProjectsGroupsApiTest.java), we have the test for **listProjects** . Currently it is designed to accept...