PaymentService
public final class PaymentService : PaymentServiceProtocol
The payment service. Interacts with the Gini Health API to support Gini Pay Connect functionality.
-
Returns a list of payment providers.
Declaration
Swift
public func paymentProviders(completion: @escaping CompletionResult<PaymentProviders>)Parameters
completionA completion callback, returning the payment list on success
-
Returns a payment provider.
Declaration
Swift
public func paymentProvider(id: String, completion: @escaping CompletionResult<PaymentProvider>)Parameters
idThe the payment provider’s unique identifier
completionA completion callback, returning the payment provider on success
-
createPaymentRequest(sourceDocumentLocation:paymentProvider:recipient:iban:bic:amount:purpose:completion:)Creates a payment request.
Declaration
Swift
public func createPaymentRequest(sourceDocumentLocation: String?, paymentProvider: String, recipient: String, iban: String, bic: String?, amount: String, purpose: String, completion: @escaping CompletionResult<String>)Parameters
sourceDocumentLocationThe URI of the source document whenever the payment details were extracted by the Gini system beforehand (optional)
paymentProviderThe id of the target payment provider - see payment providers
recipientThe recipient of the payment
ibanThe iban (international bank account number) of the payment recipient
bicThe bic (bank identifier code) for the payment
amountThe amount of the paymentt
purposeThe purpose of the payment, eg. the invoice or the customer identifier
completionA completion callback, returning the payment request on success
-
Returns a payment request.
Declaration
Swift
public func paymentRequest(id: String, completion: @escaping CompletionResult<PaymentRequest>)Parameters
idThe the payment request’s unique identifier
completionA completion callback, returning the payment request on success
-
Returns a list of payment requests.
Declaration
Swift
public func paymentRequests(limit: Int? = 20, offset: Int? = 0, completion: @escaping CompletionResult<PaymentRequests>)Parameters
limitThe maximum number of payment requests to return (default 20), (optional)
offsetA starting offset (default 0), (optional)
completionA completion callback, returning the request list on success
-
Undocumented
Declaration
Swift
public var apiDomain: APIDomain
View on GitHub
PaymentService Class Reference