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

me.figo.internal.CreateUserRequest Maven / Gradle / Ivy

Go to download

This SDK eases the development of Java applications and web services consuming the figo connect API. Figo connect allows developers simple access to users bank data on a trustworthy basis. Users can grant your application access to certain parts of their bank accounts and you can access them without worrying about the inner workings of online banking.

There is a newer version: 4.0.16
Show newest version
package me.figo.internal;

import com.google.gson.annotations.Expose;

/**
 * Helper type for user creation
 */
public class CreateUserRequest {
    @Expose
    private String  name;

    @Expose
    private String  email;
    
    @Expose
    private String  password;
    
    @Expose
    private String  language;

    public CreateUserRequest(String name, String email, String password, String language) {
        this.name = name;
        this.email = email;
        this.password = password;
        this.language = language;
    }

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getLanguage() {
		return language;
	}

	public void setLanguage(String language) {
		this.language = language;
	}
    
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy