Path with encode = false.@Documented @Deprecated @Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface EncodedPath
String.valueOf(Object). Values are used literally without URL encoding. See
@Path for URL encoding equivalent.
@GET("/image/{id}")
void example(@EncodedPath("id") int id, ..);
Path parameters may not be null.
Pathpublic abstract String value
Copyright © 2015 Square, Inc.. All Rights Reserved.