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

info.gratour.jt808core.protocol.msg.types.termparams.TP_0079_SpecialAlarmVideoParams Maven / Gradle / Ivy

Go to download

`jt-core` is a java/scala communication processing library for JT808/JT809/JT1078 standard.

The newest version!
/*******************************************************************************
 *  Copyright (c) 2019, 2020 lucendar.com.
 *  All rights reserved.
 *
 *  Contributors:
 *     KwanKin Yau ([email protected]) - initial API and implementation
 *******************************************************************************/
package info.gratour.jt808core.protocol.msg.types.termparams;

public class TP_0079_SpecialAlarmVideoParams {
    private byte videoStoreQuota;
    private short recordDuration;
    private byte tagTime;

    public byte getVideoStoreQuota() {
        return videoStoreQuota;
    }

    public void setVideoStoreQuota(byte videoStoreQuota) {
        this.videoStoreQuota = videoStoreQuota;
    }

    public short getRecordDuration() {
        return recordDuration;
    }

    public void setRecordDuration(short recordDuration) {
        this.recordDuration = recordDuration;
    }

    public byte getTagTime() {
        return tagTime;
    }

    public void setTagTime(byte tagTime) {
        this.tagTime = tagTime;
    }

    @Override
    public String toString() {
        return "TP_0079_SpecialAlarmVideoParams{" +
                "videoStoreQuota=" + videoStoreQuota +
                ", recordDuration=" + recordDuration +
                ", tagTime=" + tagTime +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy