package com.robinpowered.sdk.http; import retrofit.http.RestMethod; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Alternative to {@link retrofit.http.DELETE} that allows for a request body */ @Documented @Target(METHOD) @Retention(RUNTIME) @RestMethod(value = "DELETE", hasBody = true) public @interface DELETE { String value(); }