com.univapay.sdk.models.response.store.QrScanConfiguration Maven / Gradle / Ivy
The newest version!
package com.univapay.sdk.models.response.store;
import com.google.gson.annotations.SerializedName;
import com.univapay.sdk.types.Gateway;
import java.util.List;
public class QrScanConfiguration {
@SerializedName("enabled")
private Boolean enabled;
@SerializedName("forbidden_qr_scan_gateways")
private List forbiddenQrScanGateways;
public Boolean getEnabled() {
return enabled;
}
public List getForbiddenQrScanGateways() {
return forbiddenQrScanGateways;
}
public QrScanConfiguration(Boolean enabled, List forbiddenQrScanGateways) {
this.enabled = enabled;
this.forbiddenQrScanGateways = forbiddenQrScanGateways;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy