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

com.prowidesoftware.swift.model.mx.dic.TerminalManagementAdditionalProcess1Code Maven / Gradle / Ivy


package com.prowidesoftware.swift.model.mx.dic;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for TerminalManagementAdditionalProcess1Code. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="TerminalManagementAdditionalProcess1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="MANC"/>
 *     <enumeration value="RCNC"/>
 *     <enumeration value="RSRT"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "TerminalManagementAdditionalProcess1Code") @XmlEnum public enum TerminalManagementAdditionalProcess1Code { /** * Manual confirmation of the merchant before the terminal management action. * */ MANC, /** * Acquirer reconciliation to be performed before the terminal management action. * */ RCNC, /** * Restart the system after performing the terminal management action. * */ RSRT; public String value() { return name(); } public static TerminalManagementAdditionalProcess1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy