Hi All,
I have this method in my endpoint class:
@ApiMethod(name = "channel.create", httpMethod = HttpMethod.POST)
public Channel create(User user, App app, Channel channel, @Named("appId") Long appId)
The first param id for authentication, the second and third are Entity.
When I generate client lib I get this error:
Error: Method com.rave79.endpoint.ChannelEndpoint.create cannot have multiple resource parameters
Any Idea?
Thanks