RetrievePaymentResponse
public class RetrievePaymentResponse : BaseResponse
response to a retrieve payment request
-
the status of the payment
- FOUND - the payment has been processed
- NOT_FOUND - the payment can’t be found on this device
- IN_PROGRESS - the device is currently operating on the payment
Declaration
Swift
public var queryStatus: QueryStatus -
the request external payment id
Declaration
Swift
public var externalPaymentId: String? -
the payment object, if FOUND
Declaration
Swift
public var payment: CLVModels.Payments.Payment? -
Declaration
Swift
public init(success s: Bool, result r: ResultCode, queryStatus qs: QueryStatus, payment p: CLVModels.Payments.Payment?, externalPaymentId epi: String?)
RetrievePaymentResponse Class Reference