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

com.greenback.kit.model.GreenbackObject Maven / Gradle / Ivy

package com.greenback.kit.model;

import java.time.Instant;

public class GreenbackObject {
 
    protected String id;
    protected Instant createdAt;
    protected Instant updatedAt;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public Instant getCreatedAt() {
        return createdAt;
    }

    public void setCreatedAt(Instant createdAt) {
        this.createdAt = createdAt;
    }

    public Instant getUpdatedAt() {
        return updatedAt;
    }

    public void setUpdatedAt(Instant updatedAt) {
        this.updatedAt = updatedAt;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy