12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Api\Data;
- /**
- * Order payment interface.
- *
- * An order is a document that a web store issues to a customer. Magento generates a sales order that lists the product
- * items, billing and shipping addresses, and shipping and payment methods. A corresponding external document, known as
- * a purchase order, is emailed to the customer.
- * @api
- * @since 100.0.2
- */
- interface OrderPaymentInterface extends \Magento\Framework\Api\ExtensibleDataInterface
- {
- /**#@+
- * Constants for keys of data array. Identical to the name of the getter in snake case.
- */
- /*
- * Entity ID.
- */
- const ENTITY_ID = 'entity_id';
- /*
- * Parent ID.
- */
- const PARENT_ID = 'parent_id';
- /*
- * Base shipping captured.
- */
- const BASE_SHIPPING_CAPTURED = 'base_shipping_captured';
- /*
- * Shipping captured.
- */
- const SHIPPING_CAPTURED = 'shipping_captured';
- /*
- * Amount refunded.
- */
- const AMOUNT_REFUNDED = 'amount_refunded';
- /*
- * Base amount paid.
- */
- const BASE_AMOUNT_PAID = 'base_amount_paid';
- /*
- * Amount canceled.
- */
- const AMOUNT_CANCELED = 'amount_canceled';
- /*
- * Base amount authorized.
- */
- const BASE_AMOUNT_AUTHORIZED = 'base_amount_authorized';
- /*
- * Base amount paid online.
- */
- const BASE_AMOUNT_PAID_ONLINE = 'base_amount_paid_online';
- /*
- * Base amount refunded online.
- */
- const BASE_AMOUNT_REFUNDED_ONLINE = 'base_amount_refunded_online';
- /*
- * Base shipping amount.
- */
- const BASE_SHIPPING_AMOUNT = 'base_shipping_amount';
- /*
- * Shipping amount.
- */
- const SHIPPING_AMOUNT = 'shipping_amount';
- /*
- * Amount paid.
- */
- const AMOUNT_PAID = 'amount_paid';
- /*
- * Amount authorized.
- */
- const AMOUNT_AUTHORIZED = 'amount_authorized';
- /*
- * Base amount ordered.
- */
- const BASE_AMOUNT_ORDERED = 'base_amount_ordered';
- /*
- * Base shipping refunded.
- */
- const BASE_SHIPPING_REFUNDED = 'base_shipping_refunded';
- /*
- * Shipping refunded.
- */
- const SHIPPING_REFUNDED = 'shipping_refunded';
- /*
- * Base amount refunded.
- */
- const BASE_AMOUNT_REFUNDED = 'base_amount_refunded';
- /*
- * Amount ordered.
- */
- const AMOUNT_ORDERED = 'amount_ordered';
- /*
- * Base amount canceled.
- */
- const BASE_AMOUNT_CANCELED = 'base_amount_canceled';
- /*
- * Quote payment ID.
- */
- const QUOTE_PAYMENT_ID = 'quote_payment_id';
- /*
- * Additional data.
- */
- const ADDITIONAL_DATA = 'additional_data';
- /*
- * Credit card expiration month.
- */
- const CC_EXP_MONTH = 'cc_exp_month';
- /**
- * Credit card SS start year.
- *
- * @deprecated unused constant
- */
- const CC_SS_START_YEAR = 'cc_ss_start_year';
- /*
- * eCheck bank name.
- */
- const ECHECK_BANK_NAME = 'echeck_bank_name';
- /*
- * Payment method.
- */
- const METHOD = 'method';
- /*
- * Credit card debug request body.
- */
- const CC_DEBUG_REQUEST_BODY = 'cc_debug_request_body';
- /*
- * Credit card secure verify.
- */
- const CC_SECURE_VERIFY = 'cc_secure_verify';
- /*
- * Protection eligibility.
- */
- const PROTECTION_ELIGIBILITY = 'protection_eligibility';
- /*
- * Credit card approval.
- */
- const CC_APPROVAL = 'cc_approval';
- /*
- * Last four digits of credit card number.
- */
- const CC_LAST_4 = 'cc_last_4';
- /*
- * Credit card status description.
- */
- const CC_STATUS_DESCRIPTION = 'cc_status_description';
- /*
- * eCheck type.
- */
- const ECHECK_TYPE = 'echeck_type';
- /*
- * Credit card debug response serialized.
- */
- const CC_DEBUG_RESPONSE_SERIALIZED = 'cc_debug_response_serialized';
- /**
- * Credit card SS start month.
- *
- * @deprecated unused constant
- */
- const CC_SS_START_MONTH = 'cc_ss_start_month';
- /*
- * eCheck account type.
- */
- const ECHECK_ACCOUNT_TYPE = 'echeck_account_type';
- /*
- * Last transaction ID.
- */
- const LAST_TRANS_ID = 'last_trans_id';
- /*
- * Credit card CID status.
- */
- const CC_CID_STATUS = 'cc_cid_status';
- /*
- * Credit card owner.
- */
- const CC_OWNER = 'cc_owner';
- /*
- * Credit card type.
- */
- const CC_TYPE = 'cc_type';
- /*
- * PO number.
- */
- const PO_NUMBER = 'po_number';
- /*
- * Credit card expiration year.
- */
- const CC_EXP_YEAR = 'cc_exp_year';
- /*
- * Credit card status.
- */
- const CC_STATUS = 'cc_status';
- /*
- * eCheck routing number.
- */
- const ECHECK_ROUTING_NUMBER = 'echeck_routing_number';
- /*
- * Account status.
- */
- const ACCOUNT_STATUS = 'account_status';
- /*
- * ANET transaction method.
- */
- const ANET_TRANS_METHOD = 'anet_trans_method';
- /*
- * Credit card debug response body.
- */
- const CC_DEBUG_RESPONSE_BODY = 'cc_debug_response_body';
- /**
- * Credit card SS issue.
- *
- * @deprecated unused constant
- */
- const CC_SS_ISSUE = 'cc_ss_issue';
- /*
- * eCheck account name.
- */
- const ECHECK_ACCOUNT_NAME = 'echeck_account_name';
- /*
- * Credit card AVS status.
- */
- const CC_AVS_STATUS = 'cc_avs_status';
- /*
- * Encrypted credit card number.
- */
- const CC_NUMBER_ENC = 'cc_number_enc';
- /*
- * Credit card transaction ID.
- */
- const CC_TRANS_ID = 'cc_trans_id';
- /*
- * Address status.
- */
- const ADDRESS_STATUS = 'address_status';
- /*
- * Additional information.
- */
- const ADDITIONAL_INFORMATION = 'additional_information';
- /**
- * Gets the account status for the order payment.
- *
- * @return string Account status.
- */
- public function getAccountStatus();
- /**
- * Gets the additional data for the order payment.
- *
- * @return string|null Additional data.
- */
- public function getAdditionalData();
- /**
- * Gets the additional information for the order payment.
- *
- * @return string[] Array of additional information.
- */
- public function getAdditionalInformation();
- /**
- * Gets the address status for the order payment.
- *
- * @return string|null Address status.
- */
- public function getAddressStatus();
- /**
- * Gets the amount authorized for the order payment.
- *
- * @return float|null Amount authorized.
- */
- public function getAmountAuthorized();
- /**
- * Gets the amount canceled for the order payment.
- *
- * @return float|null Amount canceled.
- */
- public function getAmountCanceled();
- /**
- * Gets the amount ordered for the order payment.
- *
- * @return float|null Amount ordered.
- */
- public function getAmountOrdered();
- /**
- * Gets the amount paid for the order payment.
- *
- * @return float|null Amount paid.
- */
- public function getAmountPaid();
- /**
- * Gets the amount refunded for the order payment.
- *
- * @return float|null Amount refunded.
- */
- public function getAmountRefunded();
- /**
- * Gets the anet transaction method for the order payment.
- *
- * @return string|null Anet transaction method.
- */
- public function getAnetTransMethod();
- /**
- * Gets the base amount authorized for the order payment.
- *
- * @return float|null Base amount authorized.
- */
- public function getBaseAmountAuthorized();
- /**
- * Gets the base amount canceled for the order payment.
- *
- * @return float|null Base amount canceled.
- */
- public function getBaseAmountCanceled();
- /**
- * Gets the base amount ordered for the order payment.
- *
- * @return float|null Base amount ordered.
- */
- public function getBaseAmountOrdered();
- /**
- * Gets the base amount paid for the order payment.
- *
- * @return float|null Base amount paid.
- */
- public function getBaseAmountPaid();
- /**
- * Gets the base amount paid online for the order payment.
- *
- * @return float|null Base amount paid online.
- */
- public function getBaseAmountPaidOnline();
- /**
- * Gets the base amount refunded for the order payment.
- *
- * @return float|null Base amount refunded.
- */
- public function getBaseAmountRefunded();
- /**
- * Gets the base amount refunded online for the order payment.
- *
- * @return float|null Base amount refunded online.
- */
- public function getBaseAmountRefundedOnline();
- /**
- * Gets the base shipping amount for the order payment.
- *
- * @return float|null Base shipping amount.
- */
- public function getBaseShippingAmount();
- /**
- * Gets the base shipping captured for the order payment.
- *
- * @return float|null Base shipping captured amount.
- */
- public function getBaseShippingCaptured();
- /**
- * Gets the base shipping refunded amount for the order payment.
- *
- * @return float|null Base shipping refunded amount.
- */
- public function getBaseShippingRefunded();
- /**
- * Gets the credit card approval for the order payment.
- *
- * @return string|null Credit card approval.
- */
- public function getCcApproval();
- /**
- * Gets the credit card avs status for the order payment.
- *
- * @return string|null Credit card avs status.
- */
- public function getCcAvsStatus();
- /**
- * Gets the credit card cid status for the order payment.
- *
- * @return string|null Credit card CID status.
- */
- public function getCcCidStatus();
- /**
- * Gets the credit card debug request body for the order payment.
- *
- * @return string|null Credit card debug request body.
- */
- public function getCcDebugRequestBody();
- /**
- * Gets the credit card debug response body for the order payment.
- *
- * @return string|null Credit card debug response body.
- */
- public function getCcDebugResponseBody();
- /**
- * Gets the credit card debug response serialized for the order payment.
- *
- * @return string|null Credit card debug response serialized.
- */
- public function getCcDebugResponseSerialized();
- /**
- * Gets the credit card expiration month for the order payment.
- *
- * @return string|null Credit card expiration month.
- */
- public function getCcExpMonth();
- /**
- * Gets the credit card expiration year for the order payment.
- *
- * @return string|null Credit card expiration year.
- */
- public function getCcExpYear();
- /**
- * Gets the last four digits of the credit card for the order payment.
- *
- * @return string Last four digits of the credit card.
- */
- public function getCcLast4();
- /**
- * Gets the encrypted credit card number for the order payment.
- *
- * @return string|null Encrypted credit card number.
- */
- public function getCcNumberEnc();
- /**
- * Gets the credit card owner for the order payment.
- *
- * @return string|null Credit card number.
- */
- public function getCcOwner();
- /**
- * Gets the credit card secure verify for the order payment.
- *
- * @return string|null Credit card secure verify.
- */
- public function getCcSecureVerify();
- /**
- * Gets the credit card SS issue for the order payment.
- *
- * @return string|null Credit card SS issue.
- * @deprecated 100.1.0 unused
- */
- public function getCcSsIssue();
- /**
- * Gets the credit card SS start month for the order payment.
- *
- * @return string|null Credit card SS start month.
- * @deprecated 100.1.0 unused
- */
- public function getCcSsStartMonth();
- /**
- * Gets the credit card SS start year for the order payment.
- *
- * @return string|null Credit card SS start year.
- * @deprecated 100.1.0 unused
- */
- public function getCcSsStartYear();
- /**
- * Gets the credit card status for the order payment.
- *
- * @return string|null Credit card status.
- */
- public function getCcStatus();
- /**
- * Gets the credit card status description for the order payment.
- *
- * @return string|null Credit card status description.
- */
- public function getCcStatusDescription();
- /**
- * Gets the credit card transaction id for the order payment.
- *
- * @return string|null Credit card transaction ID.
- */
- public function getCcTransId();
- /**
- * Gets the credit card type for the order payment.
- *
- * @return string|null Credit card type.
- */
- public function getCcType();
- /**
- * Gets the eCheck account name for the order payment.
- *
- * @return string|null eCheck account name.
- */
- public function getEcheckAccountName();
- /**
- * Gets the eCheck account type for the order payment.
- *
- * @return string|null eCheck account type.
- */
- public function getEcheckAccountType();
- /**
- * Gets the eCheck bank name for the order payment.
- *
- * @return string|null eCheck bank name.
- */
- public function getEcheckBankName();
- /**
- * Gets the eCheck routing number for the order payment.
- *
- * @return string|null eCheck routing number.
- */
- public function getEcheckRoutingNumber();
- /**
- * Gets the eCheck type for the order payment.
- *
- * @return string|null eCheck type.
- */
- public function getEcheckType();
- /**
- * Gets the entity ID for the order payment.
- *
- * @return int|null Entity ID.
- */
- public function getEntityId();
- /**
- * Sets entity ID.
- *
- * @param int $entityId
- * @return $this
- */
- public function setEntityId($entityId);
- /**
- * Gets the last transaction ID for the order payment.
- *
- * @return string|null Last transaction ID.
- */
- public function getLastTransId();
- /**
- * Gets the method for the order payment.
- *
- * @return string Method.
- */
- public function getMethod();
- /**
- * Gets the parent ID for the order payment.
- *
- * @return int|null Parent ID.
- */
- public function getParentId();
- /**
- * Gets the PO number for the order payment.
- *
- * @return string|null PO number.
- */
- public function getPoNumber();
- /**
- * Gets the protection eligibility for the order payment.
- *
- * @return string|null Protection eligibility.
- */
- public function getProtectionEligibility();
- /**
- * Gets the quote payment ID for the order payment.
- *
- * @return int|null Quote payment ID.
- */
- public function getQuotePaymentId();
- /**
- * Gets the shipping amount for the order payment.
- *
- * @return float|null Shipping amount.
- */
- public function getShippingAmount();
- /**
- * Gets the shipping captured for the order payment.
- *
- * @return float|null Shipping captured.
- */
- public function getShippingCaptured();
- /**
- * Gets the shipping refunded for the order payment.
- *
- * @return float|null Shipping refunded.
- */
- public function getShippingRefunded();
- /**
- * Sets the parent ID for the order payment.
- *
- * @param int $id
- * @return $this
- */
- public function setParentId($id);
- /**
- * Sets the base shipping captured for the order payment.
- *
- * @param float $baseShippingCaptured
- * @return $this
- */
- public function setBaseShippingCaptured($baseShippingCaptured);
- /**
- * Sets the shipping captured for the order payment.
- *
- * @param float $shippingCaptured
- * @return $this
- */
- public function setShippingCaptured($shippingCaptured);
- /**
- * Sets the amount refunded for the order payment.
- *
- * @param float $amountRefunded
- * @return $this
- */
- public function setAmountRefunded($amountRefunded);
- /**
- * Sets the base amount paid for the order payment.
- *
- * @param float $baseAmountPaid
- * @return $this
- */
- public function setBaseAmountPaid($baseAmountPaid);
- /**
- * Sets the amount canceled for the order payment.
- *
- * @param float $amountCanceled
- * @return $this
- */
- public function setAmountCanceled($amountCanceled);
- /**
- * Sets the base amount authorized for the order payment.
- *
- * @param float $baseAmountAuthorized
- * @return $this
- */
- public function setBaseAmountAuthorized($baseAmountAuthorized);
- /**
- * Sets the base amount paid online for the order payment.
- *
- * @param float $baseAmountPaidOnline
- * @return $this
- */
- public function setBaseAmountPaidOnline($baseAmountPaidOnline);
- /**
- * Sets the base amount refunded online for the order payment.
- *
- * @param float $baseAmountRefundedOnline
- * @return $this
- */
- public function setBaseAmountRefundedOnline($baseAmountRefundedOnline);
- /**
- * Sets the base shipping amount for the order payment.
- *
- * @param float $amount
- * @return $this
- */
- public function setBaseShippingAmount($amount);
- /**
- * Sets the shipping amount for the order payment.
- *
- * @param float $amount
- * @return $this
- */
- public function setShippingAmount($amount);
- /**
- * Sets the amount paid for the order payment.
- *
- * @param float $amountPaid
- * @return $this
- */
- public function setAmountPaid($amountPaid);
- /**
- * Sets the amount authorized for the order payment.
- *
- * @param float $amountAuthorized
- * @return $this
- */
- public function setAmountAuthorized($amountAuthorized);
- /**
- * Sets the base amount ordered for the order payment.
- *
- * @param float $baseAmountOrdered
- * @return $this
- */
- public function setBaseAmountOrdered($baseAmountOrdered);
- /**
- * Sets the base shipping refunded amount for the order payment.
- *
- * @param float $baseShippingRefunded
- * @return $this
- */
- public function setBaseShippingRefunded($baseShippingRefunded);
- /**
- * Sets the shipping refunded for the order payment.
- *
- * @param float $shippingRefunded
- * @return $this
- */
- public function setShippingRefunded($shippingRefunded);
- /**
- * Sets the base amount refunded for the order payment.
- *
- * @param float $baseAmountRefunded
- * @return $this
- */
- public function setBaseAmountRefunded($baseAmountRefunded);
- /**
- * Sets the amount ordered for the order payment.
- *
- * @param float $amountOrdered
- * @return $this
- */
- public function setAmountOrdered($amountOrdered);
- /**
- * Sets the base amount canceled for the order payment.
- *
- * @param float $baseAmountCanceled
- * @return $this
- */
- public function setBaseAmountCanceled($baseAmountCanceled);
- /**
- * Sets the quote payment ID for the order payment.
- *
- * @param int $id
- * @return $this
- */
- public function setQuotePaymentId($id);
- /**
- * Sets the additional data for the order payment.
- *
- * @param string $additionalData
- * @return $this
- */
- public function setAdditionalData($additionalData);
- /**
- * Sets the credit card expiration month for the order payment.
- *
- * @param string $ccExpMonth
- * @return $this
- */
- public function setCcExpMonth($ccExpMonth);
- /**
- * Sets the credit card SS start year for the order payment.
- *
- * @param string $ccSsStartYear
- * @return $this
- */
- public function setCcSsStartYear($ccSsStartYear);
- /**
- * Sets the eCheck bank name for the order payment.
- *
- * @param string $echeckBankName
- * @return $this
- */
- public function setEcheckBankName($echeckBankName);
- /**
- * Sets the method for the order payment.
- *
- * @param string $method
- * @return $this
- */
- public function setMethod($method);
- /**
- * Sets the credit card debug request body for the order payment.
- *
- * @param string $ccDebugRequestBody
- * @return $this
- */
- public function setCcDebugRequestBody($ccDebugRequestBody);
- /**
- * Sets the credit card secure verify for the order payment.
- *
- * @param string $ccSecureVerify
- * @return $this
- */
- public function setCcSecureVerify($ccSecureVerify);
- /**
- * Sets the protection eligibility for the order payment.
- *
- * @param string $protectionEligibility
- * @return $this
- */
- public function setProtectionEligibility($protectionEligibility);
- /**
- * Sets the credit card approval for the order payment.
- *
- * @param string $ccApproval
- * @return $this
- */
- public function setCcApproval($ccApproval);
- /**
- * Sets the last four digits of the credit card for the order payment.
- *
- * @param string $ccLast4
- * @return $this
- */
- public function setCcLast4($ccLast4);
- /**
- * Sets the credit card status description for the order payment.
- *
- * @param string $description
- * @return $this
- */
- public function setCcStatusDescription($description);
- /**
- * Sets the eCheck type for the order payment.
- *
- * @param string $echeckType
- * @return $this
- */
- public function setEcheckType($echeckType);
- /**
- * Sets the credit card debug response serialized for the order payment.
- *
- * @param string $ccDebugResponseSerialized
- * @return $this
- */
- public function setCcDebugResponseSerialized($ccDebugResponseSerialized);
- /**
- * Sets the credit card SS start month for the order payment.
- *
- * @param string $ccSsStartMonth
- * @return $this
- */
- public function setCcSsStartMonth($ccSsStartMonth);
- /**
- * Sets the eCheck account type for the order payment.
- *
- * @param string $echeckAccountType
- * @return $this
- */
- public function setEcheckAccountType($echeckAccountType);
- /**
- * Sets the last transaction ID for the order payment.
- *
- * @param string $id
- * @return $this
- */
- public function setLastTransId($id);
- /**
- * Sets the credit card cid status for the order payment.
- *
- * @param string $ccCidStatus
- * @return $this
- */
- public function setCcCidStatus($ccCidStatus);
- /**
- * Sets the credit card owner for the order payment.
- *
- * @param string $ccOwner
- * @return $this
- */
- public function setCcOwner($ccOwner);
- /**
- * Sets the credit card type for the order payment.
- *
- * @param string $ccType
- * @return $this
- */
- public function setCcType($ccType);
- /**
- * Sets the PO number for the order payment.
- *
- * @param string $poNumber
- * @return $this
- */
- public function setPoNumber($poNumber);
- /**
- * Sets the credit card expiration year for the order payment.
- *
- * @param string $ccExpYear
- * @return $this
- */
- public function setCcExpYear($ccExpYear);
- /**
- * Sets the credit card status for the order payment.
- *
- * @param string $ccStatus
- * @return $this
- */
- public function setCcStatus($ccStatus);
- /**
- * Sets the eCheck routing number for the order payment.
- *
- * @param string $echeckRoutingNumber
- * @return $this
- */
- public function setEcheckRoutingNumber($echeckRoutingNumber);
- /**
- * Sets the account status for the order payment.
- *
- * @param string $accountStatus
- * @return $this
- */
- public function setAccountStatus($accountStatus);
- /**
- * Sets the anet transaction method for the order payment.
- *
- * @param string $anetTransMethod
- * @return $this
- */
- public function setAnetTransMethod($anetTransMethod);
- /**
- * Sets the credit card debug response body for the order payment.
- *
- * @param string $ccDebugResponseBody
- * @return $this
- */
- public function setCcDebugResponseBody($ccDebugResponseBody);
- /**
- * Sets the credit card SS issue for the order payment.
- *
- * @param string $ccSsIssue
- * @return $this
- */
- public function setCcSsIssue($ccSsIssue);
- /**
- * Sets the eCheck account name for the order payment.
- *
- * @param string $echeckAccountName
- * @return $this
- */
- public function setEcheckAccountName($echeckAccountName);
- /**
- * Sets the credit card avs status for the order payment.
- *
- * @param string $ccAvsStatus
- * @return $this
- */
- public function setCcAvsStatus($ccAvsStatus);
- /**
- * Sets the encrypted credit card number for the order payment.
- *
- * @param string $ccNumberEnc
- * @return $this
- */
- public function setCcNumberEnc($ccNumberEnc);
- /**
- * Sets the credit card transaction id for the order payment.
- *
- * @param string $id
- * @return $this
- */
- public function setCcTransId($id);
- /**
- * Sets the address status for the order payment.
- *
- * @param string $addressStatus
- * @return $this
- */
- public function setAddressStatus($addressStatus);
- /**
- * Retrieve existing extension attributes object or create a new one.
- *
- * @return \Magento\Sales\Api\Data\OrderPaymentExtensionInterface|null
- */
- public function getExtensionAttributes();
- /**
- * Set an extension attributes object.
- *
- * @param \Magento\Sales\Api\Data\OrderPaymentExtensionInterface $extensionAttributes
- * @return $this
- */
- public function setExtensionAttributes(\Magento\Sales\Api\Data\OrderPaymentExtensionInterface $extensionAttributes);
- }
|