FundingSourceType

public enum FundingSourceType : Decodable, Encodable, Hashable
  • Credit or debit card based funding source

    Declaration

    Swift

    case creditCard
  • Bank account based funding source

    Declaration

    Swift

    case bankAccount
  • Declaration

    Swift

    case unknown(String)
  • Backwards compatibility guard for catching new enum values added by the service - check you have the latest version of the SDK

    Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws