new module:models/PaymentAuthorizationResponse()
This class subject to change without prior notice, Please dont use this class directly.
Constructs a newPaymentAuthorizationResponse.
Members
-
static, readonly PaymentMethodEnum :String
-
Allowed values for the
payment_methodproperty.Properties:
Name Type Description voyager_fleetString value: "voyager_fleet"
-
static, readonly StatusEnum :String
-
Allowed values for the
statusproperty.Properties:
Name Type Description approvedString value: "approved"
declinedString value: "declined"
errorString value: "error"
cancelledString value: "cancelled"
expiredString value: "expired"
reversedString value: "reversed"
processedString value: "processed"
-
inner audit_info :module:models/AuditInfoVo
-
-
inner auth_amount :String
-
The amount being authorized.
-
inner captured_time :String
-
The date on which the payment authorization is captured in UTC timestamp, with ISO8601 format. For e.g., 2019-08-13T09:21:34.359+0000..
-
inner card_cvv_number :String
-
This is never returned by EBPP. This needs to be passed to EBPP when making or editing a payment with a card funding account.
-
inner comments :String
-
Comments that can be used to recollect the operation performed on the resource object. API clients need to ensure that no sensitive information is passed in the memo. Alacriti (EBPP) is not responsible for the security of any sensitive information that may be passed as part of the memo.
-
inner currency_code3d :String
-
The three-letter currency code in the ISO4217 format, in uppercase, for the card account. It must be a currency supported by EBPP. This defaults to USD.
-
inner custom_fields :Object.<String, String>
-
The additional information or meta-information that EBPP can accept, maintain and transmit back to the client. The custom fields need to be configured with EBPP before they can be accepted. EBPP would reject custom fields that are not pre-configured. Please contact <a href = "mailto: support@billerpayments.com">support@billerpayments.com for more information on configuring and using custom fields. Only the custom fields enabled for the client, in EBPP, would be accepted in the requests.
-
inner customer :module:models/PaymentAuthCustomerResponse
-
-
inner customer_account :module:models/PaymentAuthCustomerAccountResponse
-
-
inner entry_time :String
-
The date on which the payment authorization created in UTC timestamp, with ISO8601 format. For e.g., 2019-08-13T09:21:34.359+0000.
-
inner funding_account :module:models/PaymentAuthFundingAccountResponse
-
-
inner id :String
-
The unique identifier assigned by EBPP to the payment authorization.
-
inner payment_auth_reference :String
-
The unique identifier in the client system for the payment.
-
inner payment_method :module:models/PaymentAuthorizationResponse.PaymentMethodEnum
-
The fulfillment method for the payment authorization.
-
inner payment_network_response :module:models/PaymentNetworkResponseVo
-
-
inner status :module:models/PaymentAuthorizationResponse.StatusEnum
-
The status of the payment.
-
inner url :String
-
This URL fetches the details of payment authorization.
Methods
-
static constructFromObject(data, obj) → {module:models/PaymentAuthorizationResponse}
-
Constructs a
PaymentAuthorizationResponsefrom a plain JavaScript object, optionally creating a new instance. Copies all relevant properties fromdatatoobjif supplied or a new instance if not.Parameters:
Name Type Description dataObject The plain JavaScript object bearing properties of interest.
objmodule:models/PaymentAuthorizationResponse Optional instance to populate.
Returns:
module:models/PaymentAuthorizationResponse -The populated
PaymentAuthorizationResponseinstance.