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

com.transbank.webpay.wswebpay.service.WsTransactionType Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version

package com.transbank.webpay.wswebpay.service;

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


/**
 * 

Java class for wsTransactionType. * *

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

*

 * <simpleType name="wsTransactionType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="TR_NORMAL_WS"/>
 *     <enumeration value="TR_NORMAL_WS_WPM"/>
 *     <enumeration value="TR_MALL_WS"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "wsTransactionType") @XmlEnum public enum WsTransactionType { TR_NORMAL_WS, TR_NORMAL_WS_WPM, TR_MALL_WS; public String value() { return name(); } public static WsTransactionType fromValue(String v) { return valueOf(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy