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

com.riskified.models.ResOrder Maven / Gradle / Ivy

The newest version!
package com.riskified.models;

public class ResOrder {

    private String id;
    private String status;
    private String description;
    private String oldStatus;
    private String decisionCode;
    private String category;
	private int score;
	private AuthenticationType authentication_type;
	
	
    public String getId() {
        return id;
    }

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

    public String getStatus() {
        return status;
    }

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

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getOldStatus() {
        return oldStatus;
    }

    public void setOldStatus(String oldStatus) {
        this.oldStatus = oldStatus;
    }

    public String getDecisionCode() {
        return decisionCode;
    }

    public void setDecisionCode(String decisionCode) {
        this.decisionCode = decisionCode;
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }
    
    
    public int getScore() {
        return score;
    }

    public void setScore(int score) {
        this.score = score;
    }
    
    public AuthenticationType getAuthenticationType() { 
    	return authentication_type; 
    }

    public void setAuthenticationType(AuthenticationType authenticationType) { 
    	this.authentication_type = authenticationType; 
    }
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy