package com.dji.sample.debug.model.param;
|
|
import com.dji.sdk.cloudapi.debug.DongleDeviceTypeEnum;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
public class EsimActivateParam {
|
|
/**
|
* Identifies the dongle to be operated on.
|
*/
|
@NotNull
|
private String imei;
|
|
/**
|
* Identifies the target device to operate on.
|
*/
|
@NotNull
|
private DongleDeviceTypeEnum deviceType;
|
}
|