com.global.api.entities.propay.DeviceInfo 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.propay;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
public class DeviceInfo {
/** Unique name of the device being ordered */
private String name;
/** Number of devices ordered. Defaults to 0 */
private int quantity;
/** A list of attributes for the specific device. This will be null if no attributes are set */
private List attributes;
}