
com.global.api.entities.gpApi.entities.UserAccount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.entities.gpApi.entities;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class UserAccount {
private String id;
private String name;
private String type;
public UserAccount(String id) {
this.id = id;
}
public UserAccount(String id, String name) {
this.id = id;
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy