<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Payment Method in the Batch Details response in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38885#M21233</link>
    <description>&lt;P&gt;The "GetBatchStatistics" API method returns a "GetBatchStatisticsResponseType" object. This type contains a "batch" property of type "BatchDetailsType". The "BatchDetailsType" class defines a property called "paymentMethod". In my test environment, since eCheck transactions do not settle, this property always comes back as "creditCard". What will it come back as in real, production environment, where there are also eCheck transations that need to be settled? Will Authorize.Net create separate batches for credit card transactions and eCheck transactions? If that is the case, I can see how this "paymentMethod" property will be "creditCard" in one case and "eCheck" in the other. Is that how it works?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA,&lt;/P&gt;&lt;P&gt;Eddie&lt;/P&gt;</description>
    <pubDate>Mon, 03 Feb 2014 15:20:27 GMT</pubDate>
    <dc:creator>EddieLascu88CNP</dc:creator>
    <dc:date>2014-02-03T15:20:27Z</dc:date>
    <item>
      <title>Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38885#M21233</link>
      <description>&lt;P&gt;The "GetBatchStatistics" API method returns a "GetBatchStatisticsResponseType" object. This type contains a "batch" property of type "BatchDetailsType". The "BatchDetailsType" class defines a property called "paymentMethod". In my test environment, since eCheck transactions do not settle, this property always comes back as "creditCard". What will it come back as in real, production environment, where there are also eCheck transations that need to be settled? Will Authorize.Net create separate batches for credit card transactions and eCheck transactions? If that is the case, I can see how this "paymentMethod" property will be "creditCard" in one case and "eCheck" in the other. Is that how it works?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA,&lt;/P&gt;&lt;P&gt;Eddie&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 15:20:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38885#M21233</guid>
      <dc:creator>EddieLascu88CNP</dc:creator>
      <dc:date>2014-02-03T15:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38891#M21236</link>
      <description>&lt;P&gt;The schema for the getBatchStatisticsResponse&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://api.authorize.net/xml/v1/schema/AnetApiSchema.xsd"&gt;https://api.authorize.net/xml/v1/schema/AnetApiSchema.xsd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;said the BatchDetailsType is a minOccurs="0" maxOccurs="unbounded"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so there should be 2, one for cc and one for echeck&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 15:46:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38891#M21236</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-02-03T15:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38893#M21237</link>
      <description>&lt;P&gt;In my Service Reference class, that type comes defined as this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/// &amp;lt;remarks/&amp;gt;&lt;BR /&gt;[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.18408")]&lt;BR /&gt;[System.SerializableAttribute()]&lt;BR /&gt;[System.Diagnostics.DebuggerStepThroughAttribute()]&lt;BR /&gt;[System.ComponentModel.DesignerCategoryAttribute("code")]&lt;BR /&gt;[System.Xml.Serialization.XmlTypeAttribute(Namespace="&lt;A target="_blank" href="https://api.authorize.net/soap/v1/&amp;quot;)]"&gt;https://api.authorize.net/soap/v1/")]&lt;/A&gt;&lt;BR /&gt;public partial class GetBatchStatisticsResponseType : ANetApiResponseType&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp;private BatchDetailsType batchField;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;/// &amp;lt;remarks/&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;[System.Xml.Serialization.XmlElementAttribute(Order=0)]&lt;BR /&gt;&amp;nbsp; &amp;nbsp;public BatchDetailsType batch {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; get {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return this.batchField;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; set {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;this.batchField = value;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;this.RaisePropertyChanged("batch");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So there's only one BatchDetailsType object, not an array of them. The PaymentMethod property belongs to the BatchDetailsType class, so there's only one payment method.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 15:53:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38893#M21237</guid>
      <dc:creator>EddieLascu88CNP</dc:creator>
      <dc:date>2014-02-03T15:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38895#M21238</link>
      <description>&lt;P&gt;From the WSDL (&lt;A target="_blank" href="https://api.authorize.net/soap/v1/service.asmx?WSDL):"&gt;https://api.authorize.net/soap/v1/service.asmx?WSDL):&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;s:complexType name="GetBatchStatisticsResponseType"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;lt;s:complexContent mixed="false"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:extension base="tns:ANetApiResponseType"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;s:sequence&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:element name="batch" type="tns:BatchDetailsType" &lt;STRONG&gt;maxOccurs="1" minOccurs="0"&lt;/STRONG&gt;/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/s:sequence&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/s:extension&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/s:complexContent&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/s:complexType&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, there's only one Batch Details object aggregated in the Batch Statistics Response Type.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 15:59:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38895#M21238</guid>
      <dc:creator>EddieLascu88CNP</dc:creator>
      <dc:date>2014-02-03T15:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38897#M21239</link>
      <description>&lt;P&gt;Oop. now I see it, the request is based on batchID, so there would be different batchID.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 16:17:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38897#M21239</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-02-03T16:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38899#M21240</link>
      <description>&lt;P&gt;So my question stands: are there separate batches closed daily for credit card transactions and eCheck transactions? Maybe someone else can shed some light on this question. Someone that already has a live/production account.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 16:35:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38899#M21240</guid>
      <dc:creator>EddieLascu88CNP</dc:creator>
      <dc:date>2014-02-03T16:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38905#M21243</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If a merchant is processing credit card and eCheck transactions, these will settle in two batches. You will also receive two separate emails for Successful Credit Card Settlement Report and Successful eCheck.Net Settlement Report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Joy&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 21:37:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38905#M21243</guid>
      <dc:creator>Joy</dc:creator>
      <dc:date>2014-02-03T21:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Payment Method in the Batch Details response</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38907#M21244</link>
      <description>&lt;P&gt;Thank you Joy for the clarification.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Eddie&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 21:55:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payment-Method-in-the-Batch-Details-response/m-p/38907#M21244</guid>
      <dc:creator>EddieLascu88CNP</dc:creator>
      <dc:date>2014-02-03T21:55:19Z</dc:date>
    </item>
  </channel>
</rss>

