PaylinkPaymentOptionsResponse

public struct PaylinkPaymentOptionsResponse : Codable

Options that are about payment for Paylink.

  • Payment rails information of the Paylink.

    Declaration

    Swift

    public let paymentRails: String?
  • Set true, if you would like to get back the debtor’s account information that the payment is made from.

    Note

    Defaults to true.

    Declaration

    Swift

    public let getRefundInfo: Bool?
  • Specifies that the payment is for payout operation.

    Note

    Default is false.

    Declaration

    Swift

    public let forPayout: Bool?
  • Creates an instance from the specified parameters.

    Declaration

    Swift

    public init(paymentRails: String?,
                getRefundInfo: Bool?,
                forPayout: Bool?)

    Parameters

    paymentRails

    Payment rails information of the Paylink.

    getRefundInfo

    Set true, if you would like to get back the debtor’s account information that the payment is made from.

    forPayout

    Specifies that the payment is for payout operation.