How can I pass more than one Entity from a client to a Google Cloud Endpoint?
For example, passing a single Entity is easily done in an Endpoint api source file in t
Use the 'named' annotation...
@ApiMethod(name = "sendStuff") public void sendStuff( @Named("clientId") String clientId, @Named("stuff") String stuff )
And for android, the client code would look like this
SendStuff sl = service.sendStuff( clientId, stuff );