Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Having a @BeanParam annotated argument with fields inside annotated with @FormParam or HeaderParam is not supported #260

Open
rassmate opened this issue Nov 3, 2021 · 0 comments

Comments

@rassmate
Copy link
Contributor

rassmate commented Nov 3, 2021

Implement support for@FormParam and @HeaderParam inside an @BeanParam annotated class for outgoing requests.

@POST
Observable<Integer> postData(@BeanParam SomeObject);

private class SomeObject {
 @HeaderParam("testHeader")
  private String testHeader;
  
  @FormParam
  private String formParam;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant