@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Headers
List of static headers sent to the API.
Headers are comma separated strings, with each in the format of
"header name: header value1,header value2".
Example:
@Headers({ "Content-Type: application/json; charset=utf-8", "accept-language: en-US" })
@POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CustomerInsights/hubs/{hubName}/images/getEntityTypeImageUploadUrl")
void getUploadUrlForEntityType(@Path("resourceGroupName") String resourceGroupName, @Path("hubName") String hubName, @Path("subscriptionId") String subscriptionId, @Body GetImageUploadUrlInputInner parameters);