All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.qcloud.cos.model.ciModel.job.v2.DNAResult Maven / Gradle / Ivy

The newest version!
package com.qcloud.cos.model.ciModel.job.v2;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

import java.util.List;

public class DNAResult {
    @XStreamImplicit(itemFieldName = "Detection")
    List detections;

    @XStreamAlias("VideoId")
    private String videoId;

    @XStreamAlias("Duration")
    private String duration;

    public List getDetections() {
        return detections;
    }

    public void setDetections(List detections) {
        this.detections = detections;
    }

    public String getVideoId() {
        return videoId;
    }

    public void setVideoId(String videoId) {
        this.videoId = videoId;
    }

    public String getDuration() {
        return duration;
    }

    public void setDuration(String duration) {
        this.duration = duration;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy