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

model.InboundConnectionRequest Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)

public class InboundConnectionRequest {

    private Long userId;
    private String status;
    private Long firstRequestedAt;
    private Long updatedAt;
    private Integer requestCounter;

    public Long getUserId() {
        return userId;
    }

    public void setUserId(Long userId) {
        this.userId = userId;
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public Long getFirstRequestedAt() {
        return firstRequestedAt;
    }

    public void setFirstRequestedAt(Long firstRequestedAt) {
        this.firstRequestedAt = firstRequestedAt;
    }

    public Long getUpdatedAt() {
        return updatedAt;
    }

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

    public Integer getRequestCounter() {
        return requestCounter;
    }

    public void setRequestCounter(Integer requestCounter) {
        this.requestCounter = requestCounter;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy