use of com.tencentcloudapi.vod.v20180717.models.ConfirmEventsRequest in project cloud-sdk by mizhousoft.
the class QCloudVODServiceImpl method confirmEvents.
/**
* {@inheritDoc}
*/
@Override
public void confirmEvents(String[] eventIds) throws CloudSDKException {
try {
ConfirmEventsRequest req = new ConfirmEventsRequest();
req.setEventHandles(eventIds);
vodClient.ConfirmEvents(req);
} catch (TencentCloudSDKException e) {
throw new CloudSDKException(e.getErrorCode(), e.getMessage(), e);
}
}
Aggregations