package com.dji.sample.debug.model.param;
|
|
import com.dji.sdk.cloudapi.debug.DongleDeviceTypeEnum;
|
import com.dji.sdk.cloudapi.device.SimSlotEnum;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
public class SimSlotSwitchParam {
|
|
/**
|
* Identifies the dongle to be operated on.
|
*/
|
@NotNull
|
private String imei;
|
|
/**
|
* Identifies the target device to operate on.
|
*/
|
@NotNull
|
private DongleDeviceTypeEnum deviceType;
|
|
/**
|
* Switch between using physical sim card and using esim.
|
*/
|
@NotNull
|
private SimSlotEnum simSlot;
|
}
|