Skip to content

add support for mixed json parsing #3

Description

@dontgitit

for example,

case class Foo(
  hello: String,
  @JsonParse
  world: List[Int]
)

Normally, you would need to submit a payload like this to match Foo

hello=something
world[0]=198
world[1]=897123
world[2]=9

We want to allow:

hello=something
world={198, 897123, 9}

It seems a @JsonParse annotation or something like that could do the trick

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions