Enter a type and click search.




Results for AuthorizenetAcceptjsRefundRequest

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsRefundSettledCommand"
             type="AuthorizenetAcceptjsAuthorizeCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            AuthorizenetAcceptjsRefundRequest
        </argument>
        <argument name="handler" xsi:type="object">
            AuthorizenetAcceptjsRefundSettledHandler
        </argument>
        <argument name="validator" xsi:type="object">
            AuthorizenetAcceptjsTransactionValidator
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsRefundSettledCommand object that it should return a AuthorizenetAcceptjsAuthorizeCommand object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsRefundSettledCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsRefundRequest"
             type="Magento\Payment\Gateway\Request\BuilderComposite">
    <arguments>
        <argument name="builders" xsi:type="array">
            <item name="request_type" xsi:type="string">
                AuthorizenetAcceptjsTransactionRequestTypeBuilder
            </item>
            <item name="store" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\StoreConfigBuilder
            </item>
            <item name="merchant_account" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\AuthenticationDataBuilder
            </item>
            <item name="transaction_type" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\RefundTransactionTypeDataBuilder
            </item>
            <item name="amount" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\AmountDataBuilder
            </item>
            <item name="payment" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\RefundPaymentDataBuilder
            </item>
            <item name="shipping" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\ShippingDataBuilder
            </item>
            <item name="ref_transaction" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\RefundReferenceTransactionDataBuilder
            </item>
            <item name="order" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\OrderDataBuilder
            </item>
            <item name="po" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\PoDataBuilder
            </item>
            <item name="customer" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\CustomerDataBuilder
            </item>
            <item name="address" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\AddressDataBuilder
            </item>
            <item name="custom_settings" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\CustomSettingsBuilder
            </item>
            <item name="passthrough_data" xsi:type="string">
                Magento\AuthorizenetAcceptjs\Gateway\Request\PassthroughDataBuilder
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsRefundRequest object that it should return a Magento\Payment\Gateway\Request\BuilderComposite object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsRefundRequest object that the following arguments should be used in the foo object's constructor.

  • $builders = [...items...];