<?xml version="1.0" encoding="UTF-8"?>
<definitions name="OrderAdjustmentService"
	targetNamespace="http://www.ebay.com/marketplace/payment/v1/services"
	xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
	xmlns:tns="http://www.ebay.com/marketplace/payment/v1/services"
	xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
	<types>
		<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.ebay.com/marketplace/payment/v1/services">
			<xs:simpleType name="AckValue">
				<xs:annotation>
					<xs:documentation>
						Indicates if the request was successful. If it was not successful, indicates whether the error is a severe error (causing the request to fail) or an informational error (a warning) that should be communicated to the user.
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="MarketPlaceServiceCommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:restriction base="xs:string">
					<xs:enumeration value="Success">
						<xs:annotation>
							<xs:documentation>
								The request was processed successfully.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="Failure">
						<xs:annotation>
							<xs:documentation>
								The request was not processed successfully. When a serious application-level error occurs, the error is returned instead of the business data.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="Warning">
						<xs:annotation>
							<xs:documentation>
								The request was processed successfully but with some warnings. See errorMessage.&lt;strong&gt;error&lt;/strong&gt; to determine the nature of the warning.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="PartialFailure">
						<xs:annotation>
							<xs:documentation>
								The request was processed successfully, but something occurred that might affect your application or the user. See errorMessage.&lt;strong&gt;error&lt;/strong&gt; to determine which portions of the request failed.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
				</xs:restriction>
			</xs:simpleType>
			<xs:complexType abstract="true" name="BaseResponse">
				<xs:annotation>
					<xs:documentation>
						Base response container for all service operations. Contains error information associated with the request.
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="MarketPlaceServiceCommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="ack" type="tns:AckValue">
						<xs:annotation>
							<xs:documentation />
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Always</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element minOccurs="0" name="errorMessage" type="tns:ErrorMessage">
						<xs:annotation>
							<xs:documentation>
								Information for an error or warning that occurred when eBay processed the request.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element minOccurs="0" name="version" type="xs:string">
						<xs:annotation>
							<xs:documentation />
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Always</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element minOccurs="0" name="timestamp" type="xs:dateTime">
						<xs:annotation>
							<xs:documentation />
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Always</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element maxOccurs="unbounded" minOccurs="0" name="extension" type="tns:ExtensionType" />
				</xs:sequence>
			</xs:complexType>
			<xs:simpleType name="ErrorCategory">
				<xs:annotation>
					<xs:documentation>
						There are three categories of errors: request errors, application errors, and system errors.
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="SOACommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:restriction base="xs:token">
					<xs:enumeration value="System" />
					<xs:enumeration value="Application" />
					<xs:enumeration value="Request" />
				</xs:restriction>
			</xs:simpleType>
			<xs:complexType name="ErrorData">
				<xs:annotation>
					<xs:documentation>
						Contains details about a single warning or error.
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="SOACommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="errorId" type="xs:long">
						<xs:annotation>
							<xs:documentation>
								A unique code that identifies the particular warning or error condition that occurred. Your application can use error codes as identifiers in your customized error- handling algorithms.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls/>
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="message" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								A description of the warning or error condition that occurred.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls/>
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:complexType name="ErrorMessage">
				<xs:annotation>
					<xs:documentation>
						 Information for warnings or errors that occurred when eBay processed the request. 
						 &lt;br/&gt;&lt;br/&gt;
						 &lt;span class="tablenote"&gt;
						 &lt;strong&gt;Note:&lt;/strong&gt; This field is not returned if the value of &lt;strong&gt;ack&lt;/strong&gt; is Success.
						 &lt;/span&gt;
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="SOACommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element maxOccurs="unbounded" minOccurs="0" name="error" type="tns:ErrorData">
						<xs:annotation>
							<xs:documentation>
								A container for the warning or error details. 
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls/>
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:complexType name="ErrorParameter">
				<xs:annotation>
					<xs:documentation>
						Various warning and error messages return one or more variables that contain contextual information about the error. This is often the field or value that triggered the error. 
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="SOACommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:simpleContent>
					<xs:extension base="xs:string">
						<xs:attribute name="name" type="xs:string" use="optional" />
					</xs:extension>
				</xs:simpleContent>
			</xs:complexType>
			<xs:simpleType name="ErrorSeverity">
				<xs:annotation>
					<xs:documentation>
						Indicates whether the reported problem is fatal (an error) or is less-severe (a warning).
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="SOACommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:restriction base="xs:token">
					<xs:enumeration value="Error" >
						<xs:annotation>
							<xs:documentation>
							eBay encountered a fatal error during the processing of the request, causing the request to fail. When eBay encounters an error, it returns error data instead of the requested business data. Inspect the error details and resolve the problem before resubmitting the request.							
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="Warning" >
					<xs:annotation>
							<xs:documentation>
							eBay encountered a non-fatal error during the processing of the request, causing the request to fail. Inspect the warning details and resolve the problem before resubmitting the request.							
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
				</xs:restriction>
			</xs:simpleType>
			<xs:complexType name="ExtensionType">
				<xs:annotation>
					<xs:documentation>
						Reserved for internal or future use.
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="MarketPlaceServiceCommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
							<CallInfo>
								<AllCalls />
								<returned>Conditionally</returned>
							</CallInfo>
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="id" type="xs:positiveInteger">
						<xs:annotation>
							<xs:documentation>
								Reserved for internal or future use.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="version" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								Reserved for internal or future use.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="contentType" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								Reserved for internal or future use.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="value" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								Reserved for internal or future use.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:any maxOccurs="unbounded" minOccurs="0" processContents="lax" />
				</xs:sequence>
			</xs:complexType>
			<xs:complexType abstract="true" name="BaseServiceResponse">
				<xs:annotation>
					<xs:documentation>
						Base response container for all service operations. Contains error information associated with the request.
					</xs:documentation>
					<xs:appinfo>
						<typeLibrarySource library="MarketPlaceServiceCommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services" />
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="ack" type="tns:AckValue">
						<xs:annotation>
							<xs:documentation>
								A token representing the application-level acknowledgement code that indicates the response status (e.g., Success). The &lt;strong&gt;AckValue&lt;/strong&gt; list specifies the possible values for &lt;strong&gt;Ack&lt;/strong&gt;. 
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Always</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element minOccurs="0" name="errorMessage" type="tns:ErrorMessage">
						<xs:annotation>
							<xs:documentation>
							   Contains information for warnings or errors that occurred when eBay processed the request.
								&lt;br/&gt;&lt;br/&gt;
								&lt;span class="tablenote"&gt;
								&lt;strong&gt;Note:&lt;/strong&gt; This field is not returned if the value of &lt;strong&gt;ack&lt;/strong&gt; is Success.
								&lt;/span&gt;
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element minOccurs="0" name="version" type="xs:string">
						<xs:annotation>
							<xs:documentation>
							   The current version number of the Order Adjustment service.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Always</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element minOccurs="0" name="timestamp" type="xs:dateTime">
						<xs:annotation>
							<xs:documentation>
							   The date and time that the response was returned.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Always</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element maxOccurs="unbounded" minOccurs="0" name="extension" type="tns:ExtensionType">
						<xs:annotation>
							<xs:documentation>
							   This container is reserved for internal or future use.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<AllCalls />
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:complexType name="OrderIdType">
				<xs:annotation>
					<xs:documentation>
					   Container consisting of the unique identifier for an eBay order.
					</xs:documentation>
               <xs:appinfo>
                 <callInfo>
                   <callName>acceptAdjustment</callName>
                   <callName>issueRefund</callName>
                   <callName>rejectAdjustment</callName>
                   <requiredInput>Yes</requiredInput>
                 </callInfo>
               </xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="id" type="xs:string" maxOccurs="1" minOccurs="1">
						<xs:annotation>
							<xs:documentation>
   							A unique identifier of an eBay order. This field will accept an eBay &lt;strong&gt;OrderID&lt;/strong&gt; value (generated by eBay for multiple line item orders) or an &lt;strong&gt;OrderLineItemID&lt;/strong&gt; value, which is a concatenation of &lt;strong&gt;ItemID&lt;/strong&gt; and &lt;strong&gt;TransactionID&lt;/strong&gt; with a hyphen separating these two IDs. &lt;br/&gt;&lt;br/&gt;
   							For more information about eBay orders, see the Trading API documentation.
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>acceptAdjustment</callName>
                         <callName>issueRefund</callName>
                         <callName>rejectAdjustment</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:complexType name="LineItemType">
				<xs:sequence>
					<xs:element name="itemId" type="xs:string" />
					<xs:element name="transactionId" type="xs:string" />
				</xs:sequence>
			</xs:complexType>
			<xs:complexType name="Amount">
         	<xs:annotation>
         		<xs:documentation>
         		   The basic type for specifying monetary amounts. A double value (e.g., 1.00 or 1.0) is meaningful as a monetary amount when accompanied by a specification of the currency using the &lt;strong&gt;currencyId&lt;/strong&gt; attribute.
         		</xs:documentation>
         		<xs:appinfo>
            		<typeLibrarySource library="MarketPlaceServiceCommonTypeLibrary" namespace="http://www.ebay.com/marketplace/services">
            		</typeLibrarySource>
         		</xs:appinfo>
         	</xs:annotation>
         	<xs:simpleContent>
         		<xs:extension base="xs:double">
            		<xs:attribute name="currencyId" type="xs:string" use="required">
               		<xs:annotation>
         					<xs:documentation>
         						A code representing the currency of the specified monetary amount. This must be one of the currency code types that are currently valid for use on eBay. &lt;br/&gt;&lt;br/&gt;
         						For more information about valid currency codes, see the <a href="http://developer.ebay.com/Devzone/XML/docs/Reference/eBay/types/CurrencyCodeType.html">Currency Code type</a> table.
         					</xs:documentation>
                        <xs:appinfo>
                          <callInfo>
                            <callName>issueRefund</callName>
                            <requiredInput>Yes</requiredInput>
									 <returned>Conditionally</returned>
                          </callInfo>
                        </xs:appinfo>
                     </xs:annotation>
            		</xs:attribute>
         		</xs:extension>
         	</xs:simpleContent>
			</xs:complexType>
			<xs:simpleType name="PriceLineType">
				<xs:annotation>
					<xs:documentation>
						Indicates the charge component of an order line item to which a PriceLine applies. &lt;br/&gt;&lt;br/&gt; 
						&lt;span class="tablenote"&gt; &lt;strong&gt;Note:&lt;/strong&gt; Regardless of the charge component specified, the amount refunded applies to the total quantity of that line item in the order. For example, if the buyer ordered three units of a particular item, and the seller is refunding the shipping price of that item, the refund will comprise the total shipping price for all three units. 
						&lt;/span&gt;
					</xs:documentation>
               <xs:appinfo>
                 <callInfo>
                   <callName>issueRefund</callName>
                   <requiredInput>Yes</requiredInput>
                 </callInfo>
               </xs:appinfo>
				</xs:annotation>
				<xs:restriction base="xs:token">
					<xs:enumeration value="PURCHASE_PRICE">
						<xs:annotation>
							<xs:documentation>
								The purchase price of the order line item.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="SHIPPING_PRICE">
						<xs:annotation>
							<xs:documentation>
								The shipping charge for the order line item.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="ADDITIONAL_AMOUNT">
						<xs:annotation>
							<xs:documentation>
								A miscellaneous additional amount that the seller wishes to apply to the order line item. The seller can use the &lt;strong&gt;note&lt;/strong&gt; field to provide an explanation of the additional amount.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
				</xs:restriction>
			</xs:simpleType>
			<xs:complexType name="PriceLine">
				<xs:annotation>
					<xs:documentation>
						Container for information about one charge component of an order line item, and the associated amount being refunded.
					</xs:documentation>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="type" type="tns:PriceLineType" maxOccurs="1" minOccurs="1">
      				<xs:annotation>
      					<xs:documentation>
      						The order line item charge component to which this &lt;strong&gt;priceLine&lt;/strong&gt; applies. The &lt;strong&gt;PriceLineType&lt;/strong&gt; list specifies the possible values for &lt;strong&gt;type&lt;/strong&gt;. &lt;br/&gt;&lt;br/&gt;
      	               &lt;span class="tablenote"&gt; &lt;strong&gt;Note:&lt;/strong&gt; Regardless of the type specified, the amount refunded applies to the total quantity of that line item in the order. For example, if the buyer ordered three units of a particular item, and the seller is refunding the shipping price of that item, the refund will comprise the total shipping price for all three units. 
      						&lt;/span&gt;
      					</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
      				</xs:annotation>
					</xs:element>
					<xs:element name="refundAmount" type="tns:Amount" maxOccurs="1" minOccurs="1">
      				<xs:annotation>
      					<xs:documentation>
      					 The amount being refunded for the order line item charge component specified by the &lt;strong&gt;type&lt;/strong&gt; field. &lt;br/&gt;&lt;br/&gt; 
      					 &lt;span class="tablenote"&gt; 
      					 &lt;strong&gt;Note:&lt;/strong&gt; The value of the currencyId attribute of this field must be the same value for &lt;strong&gt;totalRefundAmount&lt;/strong&gt; and all instances of lineItem.priceLine.&lt;strong&gt;refundAmount&lt;/strong&gt; throughout this call, or the call will fail. 
      					 &lt;/span&gt;
      					</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
      				</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:complexType name="RefundLineItemType">
				<xs:annotation>
					<xs:documentation>
						Container for information about an item for which the seller is issuing a refund. For each item being refunded, this includes the order line item, the types of charges being refunded, and the amount for each.
					</xs:documentation>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="orderLineItemId" type="xs:string" maxOccurs="1" minOccurs="1">
						<xs:annotation>
							<xs:documentation>
								A unique identifier of an eBay order line item. This field will accept an &lt;strong&gt;OrderLineItemID&lt;/strong&gt; value, which is a concatenation of &lt;strong&gt;ItemID&lt;/strong&gt; and &lt;strong&gt;TransactionID&lt;/strong&gt; with a hyphen separating these two IDs. &lt;br/&gt;&lt;br/&gt; 
								&lt;span class="tablenote"&gt; 
								&lt;strong&gt;Note:&lt;/strong&gt; This field will &lt;em&gt;not&lt;/em&gt; accept an eBay OrderID value (generated by eBay for multiple line item orders). For more information about eBay orders, see the Trading API documentation. &lt;/span&gt;
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="priceLine" type="tns:PriceLine" maxOccurs="unbounded" minOccurs="1">
						<xs:annotation>
							<xs:documentation>
								Contains information about one charge component of an order line item, and the associated amount being refunded. &lt;br/&gt;&lt;br/&gt;
								Charge components include the purchase price, the shipping charge, and uncategorized additional amounts. The seller can specify just one or multiple &lt;strong&gt;priceLines&lt;/strong&gt; for a given order line item.
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:complexType name="UserType">
				<xs:annotation>
					<xs:documentation>User details component</xs:documentation>
				</xs:annotation>
				<xs:sequence>
				<xs:annotation>
					<xs:documentation>Unique ebay identifier of the buyer</xs:documentation>
				</xs:annotation>
					<xs:element name="userId" type="xs:string" />
				</xs:sequence>
			</xs:complexType>
			<xs:simpleType name="FundingSourceType">
				<xs:annotation>
					<xs:documentation>
						Indicates the monetary source from which the refund was disbursed. 
					</xs:documentation>
						<xs:appinfo>
							<CallInfo>
								<callName>issueRefund</callName>
								<returned>Conditionally</returned>
							</CallInfo>
						</xs:appinfo>
				</xs:annotation>
				<xs:restriction base="xs:token">
					<xs:enumeration value="Scheduled">
						<xs:annotation>
							<xs:documentation>
								The amount that the seller is due from eBay, defined as the &lt;em&gt;Payout&lt;/em&gt;. It is the total amount for an order (including the purchase price and shipping charges) that the buyer pays. 
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="Paypal">
						<xs:annotation>
							<xs:documentation>
								The seller's PayPal account.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="BankAccount">
						<xs:annotation>
							<xs:documentation>
								The seller's bank account that is registered with eBay.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
				</xs:restriction>
			</xs:simpleType>
			<xs:complexType name="RefundFundingSource">
				<xs:annotation>
					<xs:documentation>
						Information about the seller's source of funding for the refund.&lt;br/&gt;&lt;br/&gt;
						&lt;span class="tablenote"&gt;
						&lt;strong&gt;Note:&lt;/strong&gt; This container is returned only if the value of &lt;strong&gt;refundStatus&lt;/strong&gt; is Success. 
						&lt;/span&gt;
					</xs:documentation>
				</xs:annotation>
				<xs:sequence>
					<xs:element name="fundingSource" type="tns:FundingSourceType">
						<xs:annotation>
							<xs:documentation>
								The monetary source from which the refund was made. The &lt;strong&gt;FundingSourceType&lt;/strong&gt; list specifies the possible values for &lt;strong&gt;fundingSource&lt;/strong&gt;.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<callName>issueRefund</callName>
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="accountNumber" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								The seller's account number with the funding source.
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<callName>issueRefund</callName>
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="amount" type="tns:Amount">
						<xs:annotation>
							<xs:documentation>
								The total amount being refunded, in the currency specified by the &lt;strong&gt;currencyId&lt;/strong&gt; attribute of this field. 
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<callName>issueRefund</callName>
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element name="processorTransactionId" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								A string provided by the refund funding source (for example, the seller's bank or PayPal) identifying the disbursement transaction for the refund.&lt;br/&gt;&lt;br/&gt;
								&lt;span class="tablenote"&gt;
								&lt;strong&gt;Note:&lt;/strong&gt; This field is returned only if the value of refundFundingSource.&lt;strong&gt;fundingSource&lt;/strong&gt; is BankAccount or Paypal, and if the value of &lt;strong&gt;refundStatus&lt;/strong&gt; is Success.
								&lt;/span&gt;
							</xs:documentation>
							<xs:appinfo>
								<CallInfo>
									<callName>issueRefund</callName>
									<returned>Conditionally</returned>
								</CallInfo>
							</xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:simpleType name="RefundStatus">
				<xs:annotation>
					<xs:documentation>
						Indicates the status of the refund transaction when &lt;strong&gt;issueRefundResponse&lt;/strong&gt; is transmitted.
					</xs:documentation>
						<xs:appinfo>
							<CallInfo>
								<callName>issueRefund</callName>
								<returned>Always</returned>
							</CallInfo>
						</xs:appinfo>
				</xs:annotation>
				<xs:restriction base="xs:token">
					<xs:enumeration value="Success">
						<xs:annotation>
							<xs:documentation>
								The refund was issued successfully.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="Pending">
						<xs:annotation>
							<xs:documentation>
								The refund is in progress, but has not yet completed.&lt;br/&gt;&lt;br/&gt;
								&lt;span class="tablenote"&gt;
								&lt;strong&gt;Note:&lt;/strong&gt; This value can be returned for any funding source. Upon successful completion of the refund, the seller will receive a &lt;strong&gt;RefundSuccessful&lt;/strong&gt; platform notification. For more information, see the &lt;a href="http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/NotificationEventTypeCodeType.html"&gt;NotificationEventTypeCodeType&lt;/a&gt; page.
								&lt;/span&gt;
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
					<xs:enumeration value="Failure">
						<xs:annotation>
							<xs:documentation>
								The refund was not issued.
							</xs:documentation>
						</xs:annotation>
					</xs:enumeration>
				</xs:restriction>
			</xs:simpleType>
			<xs:element name="getVersionRequest" type="tns:GetVersionRequest" />
			<xs:complexType name="GetVersionRequest">
				<xs:annotation>
					<xs:documentation>
						Use the &lt;strong&gt;getVersion&lt;/strong&gt; call to retrieve the current version number of the Order Adjustment service. This call can be used to monitor the service for availability. It has no input parameters and the response contains only the standard output fields.
					</xs:documentation>
					<xs:appinfo>
						<Summary>
							Retrieves the current version of the Order Adjustment service.
						</Summary>
					</xs:appinfo>
				</xs:annotation>
			</xs:complexType>
			<xs:element name="getVersionResponse" type="tns:GetVersionResponse" />
			<xs:complexType name="GetVersionResponse">
				<xs:annotation>
					<xs:documentation>
						[[ORG]] Default operation to return the version.
					</xs:documentation>
				</xs:annotation>
				<xs:complexContent>
					<xs:extension base="tns:BaseServiceResponse">
						<xs:sequence />
					</xs:extension>
				</xs:complexContent>
			</xs:complexType>
			<xs:element name="acceptAdjustmentRequest" type="tns:AcceptAdjustmentRequest" />
			<xs:complexType name="AcceptAdjustmentRequest">
				<xs:annotation>
					<xs:documentation>
						Enables a seller to accept over or under payments from a buyer for a specified order.
					</xs:documentation>
					<xs:appinfo>
						<Summary>
							Enables a seller to accept over or under payments from a buyer.
						</Summary>
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element maxOccurs="1" minOccurs="1" name="orderId" type="tns:OrderIdType">
						<xs:annotation>
							<xs:documentation>
								Contains information identifying the eBay order for which the refund will be issued. 
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>acceptAdjustment</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:element name="acceptAdjustmentResponse" type="tns:AcceptAdjustmentResponse" />
			<xs:complexType name="AcceptAdjustmentResponse">
				<xs:annotation>
					<xs:documentation>
						[[ORG]] Return seller accepted over or under payment status.
            	</xs:documentation>
				</xs:annotation>
				<xs:complexContent>
					<xs:extension base="tns:BaseServiceResponse" />
				</xs:complexContent>
			</xs:complexType>
			<xs:element name="rejectAdjustmentRequest" type="tns:RejectAdjustmentRequest" />
			<xs:complexType name="RejectAdjustmentRequest">
				<xs:annotation>
					<xs:documentation>
						Enables a seller to reject over or under payments from a buyer for a specified order.
               </xs:documentation>
					<xs:appinfo>
						<Summary>
							Enables a seller to reject over or under payments from a buyer.
						</Summary>
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element maxOccurs="1" minOccurs="1" name="orderId" type="tns:OrderIdType">
						<xs:annotation>
							<xs:documentation>
								Contains information identifying the eBay order for which the refund is being rejected. 
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>rejectAdjustment</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:element name="rejectAdjustmentResponse" type="tns:RejectAdjustmentResponse" />
			<xs:complexType name="RejectAdjustmentResponse">
				<xs:annotation>
					<xs:documentation>
						[[ORG]] Return seller rejected over or under payment status.
            	</xs:documentation>
				</xs:annotation>
				<xs:complexContent>
					<xs:extension base="tns:BaseServiceResponse" />
				</xs:complexContent>
			</xs:complexType>
			<xs:element name="issueRefundRequest" type="tns:IssueRefundRequest" />
			<xs:complexType name="IssueRefundRequest">
				<xs:annotation>
					<xs:documentation>
						Enables a seller to voluntarily provide a refund to a buyer. The seller can refund the item price, the shipping cost or an additional amount for one or more line items in the order. &lt;br/&gt;&lt;br/&gt;
						&lt;span class="tablenote"&gt;
						&lt;strong&gt;Note:&lt;/strong&gt; Currently, issueRefund may be applied to one order at a time.
						&lt;/span&gt;
            	</xs:documentation>
					<xs:appinfo>
						<Summary>
							Enables a seller to voluntarily provide a refund to a buyer.
						</Summary>
					</xs:appinfo>
				</xs:annotation>
				<xs:sequence>
					<xs:element maxOccurs="1" minOccurs="0" name="buyerId" type="xs:string">
						<xs:annotation>
							<xs:documentation>
							  The unique eBay user ID of the buyer to whom the refund is being issued. Because the required orderId.&lt;strong&gt;Id&lt;/strong&gt; field provides information sufficient to determine the identity of the buyer, this field is not required. &lt;br/&gt;&lt;br/&gt;
							  The seller can employ this field as a security measure, by independently providing the buyer's user ID to validate the buyer's identity against the user ID value derived from orderId.&lt;strong&gt;id&lt;/strong&gt;. If the values do not match, this &lt;strong&gt;issueRefund&lt;/strong&gt; call will fail.
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>No</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>	
					</xs:element>
					<xs:element maxOccurs="1" minOccurs="1" name="externalReferenceId" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								A unique identifier of the &lt;strong&gt;issueRefund&lt;/strong&gt; request, created and maintained by the seller making the request. eBay uses &lt;strong&gt;externalReferenceId&lt;/strong&gt; to distinguish this refund request from any others the seller submits for this or any other order. Example: &lt;code&gt;order12345_refundrequest67890&lt;/code&gt;. 
								&lt;br/&gt;
							</xs:documentation>
                     <xs:appinfo>
                     		<maxLength>120</maxLength>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element maxOccurs="1" minOccurs="1" name="orderId" type="tns:OrderIdType">
						<xs:annotation>
							<xs:documentation>
								Contains information identifying the eBay order for which the refund is being issued. 
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element maxOccurs="1" minOccurs="1" name="refundType" type="tns:RefundType">
						<xs:annotation>
							<xs:documentation>
								The basis on which the refund is being issued. &lt;br/&gt;&lt;br/&gt;
								&lt;span class="tablenote"&gt;
								&lt;strong&gt;Note:&lt;/strong&gt; This optional field currently has one enumeration value, which is the default.
								&lt;/span&gt;
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>No</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element maxOccurs="1" minOccurs="1" name="totalRefundAmount" type="tns:Amount">
						<xs:annotation>
							<xs:documentation>
								The total amount being refunded with this call. This amount should be the total of all the lineItem.priceLine.&lt;strong&gt;refundAmount&lt;/strong&gt; values specified with this call. &lt;br/&gt;&lt;br/&gt; 
								&lt;span class="tablenote"&gt; 
								&lt;strong&gt;Note:&lt;/strong&gt; The value of the &lt;strong&gt;currencyId&lt;/strong&gt; attribute must be the same for &lt;strong&gt;totalRefundAmount&lt;/strong&gt; as for all instances of lineItem.priceLine.&lt;strong&gt;refundAmount&lt;/strong&gt; throughout this call, or the call will fail.
								&lt;/span&gt;
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element maxOccurs="1" minOccurs="0" name="note" type="xs:string">
						<xs:annotation>
							<xs:documentation>
								An optional message that the seller can provide to the buyer to explain any aspect of the refund being issued, such as the purpose of a lineItem.priceLine.&lt;strong&gt;type&lt;/strong&gt; value of ADDITIONAL_AMOUNT.
							</xs:documentation>
                     <xs:appinfo>
                       <maxLength>500</maxLength>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>No</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
					<xs:element maxOccurs="unbounded" minOccurs="1" name="lineItem" type="tns:RefundLineItemType">
						<xs:annotation>
							<xs:documentation>
								Contains information about a single line item within an order for which the seller is issuing one or more refunds. &lt;br/&gt;&lt;br/&gt;
								The seller can specify as many line items as are being refunded from a single eBay order. 
							</xs:documentation>
                     <xs:appinfo>
                       <callInfo>
                         <callName>issueRefund</callName>
                         <requiredInput>Yes</requiredInput>
                       </callInfo>
                     </xs:appinfo>
						</xs:annotation>
					</xs:element>
				</xs:sequence>
			</xs:complexType>
			<xs:element name="issueRefundResponse" type="tns:IssueRefundResponse" />
			<xs:complexType name="IssueRefundResponse">
				<xs:annotation>
					<xs:documentation>
						[[ORG]] Return the status of voluntary refund, provide the details of the funding source for the refund and an estimated time. On failure provide url for sellers to take next action.
					</xs:documentation>
				</xs:annotation>
				<xs:complexContent>
					<xs:extension base="tns:BaseServiceResponse">
						<xs:sequence>
							<xs:element maxOccurs="1" minOccurs="1" name="refundTransactionId" type="xs:string" >
								<xs:annotation>
									<xs:documentation>
										An identifier generated by eBay for the transaction. &lt;br/&gt;&lt;br/&gt;
										&lt;span class="tablenote"&gt;
										&lt;strong&gt;Note:&lt;/strong&gt; This field is returned only if the value of &lt;strong&gt;refundStatus&lt;/strong&gt; is Success. 
										&lt;/span&gt;
									</xs:documentation>
                           <xs:appinfo>
                             <callInfo>
                               <callName>issueRefund</callName>
									    <returned>Conditionally</returned>
                             </callInfo>
                           </xs:appinfo>
								</xs:annotation>
							</xs:element>
							<xs:element maxOccurs="1" minOccurs="1" name="refundStatus" type="tns:RefundStatus" >
								<xs:annotation>
									<xs:documentation>
										The status of the refund transaction when &lt;strong&gt;issueRefundResponse&lt;/strong&gt; is transmitted. The &lt;strong&gt;RefundStatus&lt;/strong&gt; list specifies the possible values for &lt;strong&gt;refundStatus&lt;/strong&gt;.
									</xs:documentation>
                           <xs:appinfo>
                             <callInfo>
                               <callName>issueRefund</callName>
									    <returned>Always</returned>
                             </callInfo>
                           </xs:appinfo>
								</xs:annotation>
							</xs:element>
							<xs:element maxOccurs="1" minOccurs="0" name="errorUrl" type="xs:string">
								<xs:annotation>
									<xs:documentation>
										For some failures of this call, eBay provides this URL to a page on the eBay website, where the seller can take certain actions that will enable the refund processing to complete. &lt;br/&gt;&lt;br/&gt;
										&lt;span class="tablenote"&gt;
										&lt;strong&gt;Note:&lt;/strong&gt; This field is returned only if the value of &lt;strong&gt;refundStatus&lt;/strong&gt; is not Success, and an alternative payment method is available to the seller.
                              &lt;/span&gt;
									</xs:documentation>
                           <xs:appinfo>
                             <callInfo>
                               <callName>issueRefund</callName>
									    <returned>Conditionally</returned>
                             </callInfo>
                           </xs:appinfo>
								</xs:annotation>
							</xs:element>
							<xs:element maxOccurs="unbounded" minOccurs="1" name="refundFundingSource" type="tns:RefundFundingSource" >
								<xs:annotation>
									<xs:documentation>
										Contains information about the seller's source of funding for the refund.&lt;br/&gt;&lt;br/&gt;
										&lt;span class="tablenote"&gt;
										&lt;strong&gt;Note:&lt;/strong&gt; This container is returned only if the value of &lt;strong&gt;refundStatus&lt;/strong&gt; is Success. 
										&lt;/span&gt;
									</xs:documentation>
                           <xs:appinfo>
                             <callInfo>
                               <callName>issueRefund</callName>
									    <returned>Conditionally</returned>
                             </callInfo>
                           </xs:appinfo>
								</xs:annotation>
							</xs:element>
							<xs:element maxOccurs="1" minOccurs="0" name="estimatedCompletionDate" type="xs:dateTime">
								<xs:annotation>
									<xs:documentation>
										If the &lt;strong&gt;refundStatus&lt;/strong&gt; field value is Pending when &lt;strong&gt;issueRefundResponse&lt;/strong&gt; is transmitted, the eBay refunds system uses &lt;strong&gt;estimatedCompletionDate&lt;/strong&gt; to return an estimate of the date that the refund transaction will be complete.
									</xs:documentation>
                           <xs:appinfo>
                             <callInfo>
                               <callName>issueRefund</callName>
									    <returned>Conditionally</returned>
                             </callInfo>
                           </xs:appinfo>
								</xs:annotation>
							</xs:element>
						</xs:sequence>
					</xs:extension>
				</xs:complexContent>
			</xs:complexType>
			<xs:simpleType name="RefundType">
				<xs:annotation>
					<xs:documentation>
						Indicates the basis on which the refund is being issued.
					</xs:documentation>
               <xs:appinfo>
                 <callInfo>
                   <callName>issueRefund</callName>
                   <requiredInput>No</requiredInput>
                 </callInfo>
               </xs:appinfo>
				</xs:annotation>
				<xs:restriction base="xs:string">
					<xs:enumeration value="SELLER VOLUNTARY REFUND">
   					<xs:annotation>
   						<xs:documentation>
   							The seller is issuing a refund without requiring the buyer to return the product. This is the default value of &lt;strong&gt;RefundType&lt;/strong&gt;.
   						</xs:documentation>
   					</xs:annotation>
   				</xs:enumeration>
				</xs:restriction>
			</xs:simpleType>
		</xs:schema>
	</types>
	<message name="acceptAdjustmentResponse">
		<part name="params" element="tns:acceptAdjustmentResponse">
		</part>
	</message>
	<message name="getVersionResponse">
		<part name="params" element="tns:getVersionResponse">
		</part>
	</message>
	<message name="rejectAdjustmentRequest">
		<part name="params" element="tns:rejectAdjustmentRequest">
		</part>
	</message>
	<message name="issueRefundResponse">
		<part name="params" element="tns:issueRefundResponse">
		</part>
	</message>
	<message name="issueRefundRequest">
		<part name="params" element="tns:issueRefundRequest">
		</part>
	</message>
	<message name="getVersionRequest">
		<part name="params" element="tns:getVersionRequest">
		</part>
	</message>
	<message name="rejectAdjustmentResponse">
		<part name="params" element="tns:rejectAdjustmentResponse">
		</part>
	</message>
	<message name="acceptAdjustmentRequest">
		<part name="params" element="tns:acceptAdjustmentRequest">
		</part>
	</message>
	<portType name="OrderAdjustmentServicePort">
		<operation name="getVersion">
			<wsdl:documentation>
				Default operation to return the version.
		</wsdl:documentation>
			<input message="tns:getVersionRequest">
			</input>
			<output message="tns:getVersionResponse">
			</output>
		</operation>
		<operation name="acceptAdjustment">
			<wsdl:documentation>
				Allow seller to accept over or under payments from buyer for an order.
			</wsdl:documentation>
			<input message="tns:acceptAdjustmentRequest">
			</input>
			<output message="tns:acceptAdjustmentResponse">
			</output>
		</operation>
		<operation name="rejectAdjustment">
			<wsdl:documentation>
				Allow seller to reject over or under payments from buyer for an order.
			</wsdl:documentation>
			<input message="tns:rejectAdjustmentRequest">
			</input>
			<output message="tns:rejectAdjustmentResponse">
			</output>
		</operation>
		<operation name="issueRefund">
			<wsdl:documentation>
				Allow sellers to refund voluntarily. Operation allows seller to refund either item_price, shipping and/or additional amount at item level and for all items within an order. Currently, it supports for one order at a time.
		</wsdl:documentation>
			<input message="tns:issueRefundRequest">
			</input>
			<output message="tns:issueRefundResponse">
			</output>
		</operation>
	</portType>
	<binding name="OrderAdjustmentServiceHttpBinding" type="tns:OrderAdjustmentServicePort">
		<http:binding verb="POST" />
		<operation name="getVersion">
			<http:operation location="/getVersion" />
			<input>
				<mime:content type="application/x-www-form-urlencoded" />
			</input>
			<output>
				<mime:content type="text/xml" />
			</output>
		</operation>
		<operation name="acceptAdjustment">
			<http:operation location="/acceptAdjustment" />
			<input>
				<mime:content type="application/x-www-form-urlencoded" />
			</input>
			<output>
				<mime:content type="text/xml" />
			</output>
		</operation>
		<operation name="rejectAdjustment">
			<http:operation location="/rejectAdjustment" />
			<input>
				<mime:content type="application/x-www-form-urlencoded" />
			</input>
			<output>
				<mime:content type="text/xml" />
			</output>
		</operation>
		<operation name="issueRefund">
			<http:operation location="/issueRefund" />
			<input>
				<mime:content type="application/x-www-form-urlencoded" />
			</input>
			<output>
				<mime:content type="text/xml" />
			</output>
		</operation>
	</binding>
	<binding name="OrderAdjustmentServiceSOAPBinding" type="tns:OrderAdjustmentServicePort">
		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
		<operation name="getVersion">
			<soap:operation soapAction="http://www.ebay.com/marketplace/payment/v1/services/getVersion" />
			<input>
				<soap:body use="literal" />
			</input>
			<output>
				<soap:body use="literal" />
			</output>
		</operation>
		<operation name="acceptAdjustment">
			<soap:operation soapAction="http://www.ebay.com/marketplace/payment/v1/services/acceptAdjustment" />
			<input>
				<soap:body use="literal" />
			</input>
			<output>
				<soap:body use="literal" />
			</output>
		</operation>
		<operation name="rejectAdjustment">
			<soap:operation soapAction="http://www.ebay.com/marketplace/payment/v1/services/rejectAdjustment" />
			<input>
				<soap:body use="literal" />
			</input>
			<output>
				<soap:body use="literal" />
			</output>
		</operation>
		<operation name="issueRefund">
			<soap:operation soapAction="http://www.ebay.com/marketplace/payment/v1/services/issueRefund" />
			<input>
				<soap:body use="literal" />
			</input>
			<output>
				<soap:body use="literal" />
			</output>
		</operation>
	</binding>
	<service name="OrderAdjustmentService">
		<wsdl:documentation>
			<version>1.0.0</version>
		</wsdl:documentation>
		<port name="OrderAdjustmentServiceHttpPort" binding="tns:OrderAdjustmentServiceHttpBinding">
			<http:address location="https://svcs.ebay.com/services/payment/v1/OrderAdjustmentService" />
		</port>
		<port name="OrderAdjustmentServiceSOAPPort" binding="tns:OrderAdjustmentServiceSOAPBinding">
			<soap12:address location="https://svcs.ebay.com/services/payment/v1/OrderAdjustmentService" />
		</port>
	</service>
</definitions>
