1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.dji.sample.live.service;
|
| import com.dji.sample.debug.model.param.EsimOperatorSwitchParam;
| import com.dji.sample.live.model.LiveCameraChangeParam;
| import com.dji.sdk.common.HttpResultResponse;
|
| /**
| * @author wmm
| * @version 0.1
| * @date 2024/5/8
| */
| public interface LiveService {
|
| /**
| * liveCameraChange.
| * @param sn
| * @return
| */
| // HttpResultResponse liveCameraChange(String sn, LiveCameraChangeParam param);
| /**
| * liveReceiver.
| * @param sn
| * @return
| */
| HttpResultResponse liveReceiver(String sn, LiveCameraChangeParam param);
| }
|
|