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

com.qcloud.cos.model.ciModel.job.SceneChangeInfo Maven / Gradle / Ivy

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

import com.thoughtworks.xstream.annotations.XStreamAlias;

public class SceneChangeInfo {
    @XStreamAlias("Mode")
    private String mode;

    @XStreamAlias("Time")
    private String time;

    @XStreamAlias("TransitionType")
    private String transitionType;

    public String getMode() {
        return mode;
    }

    public void setMode(String mode) {
        this.mode = mode;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }

    public String getTransitionType() {
        return transitionType;
    }

    public void setTransitionType(String transitionType) {
        this.transitionType = transitionType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy