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

net.authorize.api.contract.v1.SettlementStateEnum Maven / Gradle / Ivy

Go to download

Authorize.Net SDK includes standard payments, recurring billing, and customer profiles.

There is a newer version: 3.0.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.11.22 at 06:00:08 PM IST 
//


package net.authorize.api.contract.v1;

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


/**
 * 

Java class for settlementStateEnum. * *

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

*

 * <simpleType name="settlementStateEnum">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="settledSuccessfully"/>
 *     <enumeration value="settlementError"/>
 *     <enumeration value="pendingSettlement"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "settlementStateEnum") @XmlEnum public enum SettlementStateEnum { @XmlEnumValue("settledSuccessfully") SETTLED_SUCCESSFULLY("settledSuccessfully"), @XmlEnumValue("settlementError") SETTLEMENT_ERROR("settlementError"), @XmlEnumValue("pendingSettlement") PENDING_SETTLEMENT("pendingSettlement"); private final String value; SettlementStateEnum(String v) { value = v; } public String value() { return value; } public static SettlementStateEnum fromValue(String v) { for (SettlementStateEnum c: SettlementStateEnum.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy