Skip to content

Pushing the changes for the updated fields in the xsd for the Novembe… #150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Dec 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.06.13 at 02:31:45 PM IST
// Generated on: 2018.11.14 at 11:09:15 AM IST
//


Expand Down Expand Up @@ -99,6 +99,7 @@
DeleteCustomerShippingAddressRequest.class,
UpdateHeldTransactionRequest.class,
UpdateCustomerProfileRequest.class,
GetCustomerPaymentProfileNonceRequest.class,
CreateCustomerProfileFromTransactionRequest.class
})
public class ANetApiRequest implements java.io.Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.06.13 at 02:31:45 PM IST
// Generated on: 2018.11.14 at 11:09:15 AM IST
//


Expand Down Expand Up @@ -45,6 +45,7 @@
"sessionToken"
})
@XmlSeeAlso({
GetCustomerPaymentProfileNonceResponse.class,
UpdateHeldTransactionResponse.class,
ValidateCustomerPaymentProfileResponse.class,
GetUnsettledTransactionListResponse.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.14 at 11:09:15 AM IST
//


package net.authorize.api.contract.v1;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
* <p>Java class for ArrayOfContactDetail complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="ArrayOfContactDetail">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="contactDetail" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ContactDetailType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfContactDetail", propOrder = {
"contactDetail"
})
public class ArrayOfContactDetail {

protected List<ContactDetailType> contactDetail;

/**
* Gets the value of the contactDetail property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the contactDetail property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getContactDetail().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ContactDetailType }
*
*
*/
public List<ContactDetailType> getContactDetail() {
if (contactDetail == null) {
contactDetail = new ArrayList<ContactDetailType>();
}
return this.contactDetail;
}

}
139 changes: 139 additions & 0 deletions src/main/java/net/authorize/api/contract/v1/ContactDetailType.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.14 at 11:09:15 AM IST
//


package net.authorize.api.contract.v1;

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


/**
* <p>Java class for ContactDetailType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="ContactDetailType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="email" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;maxLength value="255"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="firstName" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;maxLength value="50"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="lastName" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;maxLength value="50"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ContactDetailType", propOrder = {
"email",
"firstName",
"lastName"
})
public class ContactDetailType {

protected String email;
protected String firstName;
protected String lastName;

/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}

/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}

/**
* Gets the value of the firstName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFirstName() {
return firstName;
}

/**
* Sets the value of the firstName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFirstName(String value) {
this.firstName = value;
}

/**
* Gets the value of the lastName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastName() {
return lastName;
}

/**
* Sets the value of the lastName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastName(String value) {
this.lastName = value;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.14 at 11:09:15 AM IST
//


package net.authorize.api.contract.v1;

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


/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiRequest">
* &lt;sequence>
* &lt;element name="connectedAccessToken" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="customerProfileId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString"/>
* &lt;element name="customerPaymentProfileId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString"/>
* &lt;/sequence>
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"connectedAccessToken",
"customerProfileId",
"customerPaymentProfileId"
})
@XmlRootElement(name = "getCustomerPaymentProfileNonceRequest")
public class GetCustomerPaymentProfileNonceRequest
extends ANetApiRequest
{

@XmlElement(required = true)
protected String connectedAccessToken;
@XmlElement(required = true)
protected String customerProfileId;
@XmlElement(required = true)
protected String customerPaymentProfileId;

/**
* Gets the value of the connectedAccessToken property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConnectedAccessToken() {
return connectedAccessToken;
}

/**
* Sets the value of the connectedAccessToken property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConnectedAccessToken(String value) {
this.connectedAccessToken = value;
}

/**
* Gets the value of the customerProfileId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerProfileId() {
return customerProfileId;
}

/**
* Sets the value of the customerProfileId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerProfileId(String value) {
this.customerProfileId = value;
}

/**
* Gets the value of the customerPaymentProfileId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerPaymentProfileId() {
return customerPaymentProfileId;
}

/**
* Sets the value of the customerPaymentProfileId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerPaymentProfileId(String value) {
this.customerPaymentProfileId = value;
}

}
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy