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

com.youcruit.onfido.api.applicants.ApplicantList Maven / Gradle / Ivy

There is a newer version: 2.2
Show newest version
package com.youcruit.onfido.api.applicants;

import java.util.List;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class ApplicantList {
    @Expose
    @SerializedName("applicants")
    private List applicants;

    public List getApplicants() {
	return applicants;
    }

    public void setApplicants(List applicants) {
	this.applicants = applicants;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy