Skip to content

Non-typed return values for a few of your api calls #41

Open
@rasharab

Description

@rasharab

i.e.

public class GetFolders {
  @SerializedName("folders")
  private List<Object> folders = null;

  public GetFolders folders(List<Object> folders) {
    this.folders = folders;
    return this;
  }

i.e.

public class GetFolderLists {
  @SerializedName("lists")
  private List<Object> lists = null;

  public GetFolderLists lists(List<Object> lists) {
    this.lists = lists;
    return this;
  }

Your openspec apis also are not providing any properly types response objects for GetFolders, GetLists etc.

Is there a reason for this?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions