1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-10-11 23:58:14 +02:00
Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/GBActivitySample.java

39 lines
819 B
Java
Raw Normal View History

package nodomain.freeyourgadget.gadgetbridge;
public class GBActivitySample {
private final int timestamp;
private final byte provider;
private final short intensity;
private final byte steps;
private final byte type;
public GBActivitySample(int timestamp, byte provider, short intensity, byte steps, byte type) {
this.timestamp = timestamp;
this.provider = provider;
this.intensity = intensity;
this.steps = steps;
this.type = type;
}
public int getTimestamp() {
return timestamp;
}
public byte getProvider() {
return provider;
}
public short getIntensity() {
return intensity;
}
public byte getSteps() {
return steps;
}
public byte getType() {
return type;
}
}