rain
2024-07-04 82e4e5f6129be2e691138cd8b8ea3262e64943af
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
package com.dji.sample.manage.model.dto;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * Receive live parameters.
 * @author sean.zhou
 * @version 0.1
 * @date 2021/11/22
 */
@Data
public class LiveTypeDTO {
 
    @JsonProperty("url_type")
    private Integer urlType;
 
    private String url;
 
    @JsonProperty("video_id")
    private String videoId;
 
    @JsonProperty("video_quality")
    private Integer videoQuality;
 
    private String videoType;
 
}