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