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

com.transbank.webpay.wswebpay.service.CompleteCardDetail 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for completeCardDetail complex type. * *

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

 * <complexType name="completeCardDetail">
 *   <complexContent>
 *     <extension base="{http://service.wswebpay.webpay.transbank.com/}cardDetail">
 *       <sequence>
 *         <element name="cvv" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "completeCardDetail", propOrder = { "cvv" }) public class CompleteCardDetail extends CardDetail { protected int cvv; /** * Gets the value of the cvv property. * */ public int getCvv() { return cvv; } /** * Sets the value of the cvv property. * */ public void setCvv(int value) { this.cvv = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy