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

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

There is a newer version: SRU2024-10.2.6
Show newest version

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

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


/**
 * 

Java class for Action2Code. * *

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

*

 * <simpleType name="Action2Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="SBTW"/>
 *     <enumeration value="RSTW"/>
 *     <enumeration value="RSBS"/>
 *     <enumeration value="ARDM"/>
 *     <enumeration value="ARCS"/>
 *     <enumeration value="ARES"/>
 *     <enumeration value="WAIT"/>
 *     <enumeration value="UPDT"/>
 *     <enumeration value="SBDS"/>
 *     <enumeration value="ARBA"/>
 *     <enumeration value="ARRO"/>
 *     <enumeration value="CINR"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Action2Code") @XmlEnum public enum Action2Code { /** * Request to submit a twin baseline. * */ SBTW, /** * Request to resubmit a twin baseline. * */ RSTW, /** * Request to resubmit a baseline. * */ RSBS, /** * Request to accept or reject mismatched data set(s). * */ ARDM, /** * Request to accept or reject a request for a change of status of the baseline. * */ ARCS, /** * Request to accept or reject a request for an extension of the period of validity of the status of the baseline. * */ ARES, /** * Request to wait until the baseline is established. * */ WAIT, /** * Request to update and resend. * */ UPDT, /** * Request to submit data set(s). * */ SBDS, /** * Request to accept or reject a request for a baseline amendment. * */ ARBA, /** * Request to accept or reject a baseline and the role contained in it for the financial institution. * */ ARRO, /** * Request to check invoice number because it was not found. * */ CINR; public String value() { return name(); } public static Action2Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy