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

com.payline.ws.model.Authorization Maven / Gradle / Ivy

Go to download

The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.

There is a newer version: 4.77.1
Show newest version

package com.payline.ws.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 * 						This element contains information about the
 * 						authorization
 * 					
 * 
 * 

Java class for authorization complex type. * *

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

 * <complexType name="authorization">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="authorizedAmount" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="authorizedCurrency" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "authorization", namespace = "http://obj.ws.payline.experian.com", propOrder = { "number", "date", "authorizedAmount", "authorizedCurrency" }) public class Authorization { @XmlElement(required = true) protected String number; @XmlElement(required = true) protected String date; @XmlElement(required = true, nillable = true) protected String authorizedAmount; @XmlElement(required = true, nillable = true) protected String authorizedCurrency; /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } /** * Gets the value of the date property. * * @return * possible object is * {@link String } * */ public String getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link String } * */ public void setDate(String value) { this.date = value; } /** * Gets the value of the authorizedAmount property. * * @return * possible object is * {@link String } * */ public String getAuthorizedAmount() { return authorizedAmount; } /** * Sets the value of the authorizedAmount property. * * @param value * allowed object is * {@link String } * */ public void setAuthorizedAmount(String value) { this.authorizedAmount = value; } /** * Gets the value of the authorizedCurrency property. * * @return * possible object is * {@link String } * */ public String getAuthorizedCurrency() { return authorizedCurrency; } /** * Sets the value of the authorizedCurrency property. * * @param value * allowed object is * {@link String } * */ public void setAuthorizedCurrency(String value) { this.authorizedCurrency = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy