com.wix.mediaplatform.v7.service.file.DeleteFileIdRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-platform-java-sdk Show documentation
Show all versions of media-platform-java-sdk Show documentation
The Wix Media Platform Java SDK
package com.wix.mediaplatform.v7.service.file;
import com.wix.mediaplatform.v7.http.AuthenticatedHTTPClient;
import com.wix.mediaplatform.v7.service.MediaPlatformRequest;
public class DeleteFileIdRequest extends MediaPlatformRequest {
DeleteFileIdRequest(AuthenticatedHTTPClient authenticatedHTTPClient, String baseUrl, String fileId) {
super(authenticatedHTTPClient, "DELETE", baseUrl + "/files/" + fileId, null);
}
}