You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public ItemRequest<CustomField> findByWorkspace(String workspace) {
String path = String.format("/workspaces/%s/custom_fields", new Object[]{workspace});
String path = String.format("/workspaces/%s/custom_fields", new Object[]{workspace});
return new ItemRequest(this, CustomField.class, path, "GET");
}
Since you return ALL CustomField objects from a workspace the method should return CollectionRequest<CustomField> not a single item.
Calling the method generates Exception...
The code for the method is like this:
Since you return ALL
CustomField
objects from a workspace the method should returnCollectionRequest<CustomField>
not a single item.Calling the method generates Exception...
┆Issue is synchronized with this Asana task
The text was updated successfully, but these errors were encountered: