wangmengmeng
2025-04-26 96250617dbbefce55b5966c94880e2b07b6c98df
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
27
28
29
30
31
32
package com.dji.sample.control.model.param;
 
import com.dji.sdk.cloudapi.control.ExposureCameraTypeEnum;
import com.dji.sdk.cloudapi.control.ExposureValueEnum;
import com.dji.sdk.cloudapi.device.PayloadIndex;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
/**
 * @author wmm
 * @version 0.1
 * @date 2024/5/8
 */
@Data
public class CameraExposureSetParam {
 
    /**
     * Camera enumeration.
     * It is unofficial device_mode_key.
     * The format is *{type-subtype-gimbalindex}*.
     * Please read [Product Supported](https://developer.dji.com/doc/cloud-api-tutorial/en/overview/product-support.html)
     */
    @NotNull
    private PayloadIndex payloadIndex;
 
    @NotNull
    private ExposureCameraTypeEnum cameraType;
 
    @NotNull
    private ExposureValueEnum exposureValue;
 
}