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;
|
|
}
|