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

com.manywho.sdk.api.draw.log.LogEntry Maven / Gradle / Ivy

The newest version!
package com.manywho.sdk.api.draw.log;

import com.manywho.sdk.api.draw.elements.Element;

import java.time.OffsetDateTime;

public class LogEntry extends Element {
    private OffsetDateTime timestamp;
    private String message;
    private String data;

    public OffsetDateTime getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(OffsetDateTime timestamp) {
        this.timestamp = timestamp;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public String getData() {
        return data;
    }

    public void setData(String data) {
        this.data = data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy