com.global.api.entities.Document 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;
import com.global.api.entities.enums.DocumentCategory;
import com.global.api.entities.enums.FileType;
import lombok.Getter;
import lombok.Setter;
@Getter @Setter
public class Document {
private String Id;
private String Name;
private String Status;
private String TimeCreated;
private FileType Format;
private DocumentCategory Category;
}