retrofit / retrofit2.http / Url

Url

@Target([AnnotationTarget.VALUE_PARAMETER]) class Url

URL resolved against the base URL.


  @GET
  Call<ResponseBody> list(@Url String url);
  

See base URL for details of how the value will be resolved against a base URL to create the full endpoint URL.

Constructors

<init>

Url()

URL resolved against the base URL.


  @GET
  Call<ResponseBody> list(@Url String url);