BTPayPalRecurringBillingPlanType

public enum BTPayPalRecurringBillingPlanType : String

PayPal recurring billing plan type, or charge pattern.

  • Variable amount, fixed frequency, no defined duration. (E.g., utility bills, insurance).

    Declaration

    Swift

    case recurring = "RECURRING"
  • Fixed amount, fixed frequency, defined duration. (E.g., pay for furniture using monthly payments).

    Declaration

    Swift

    case installment = "INSTALLMENT"
  • Fixed or variable amount, variable freq, no defined duration. (E.g., Coffee shop card reload, prepaid road tolling).

    Declaration

    Swift

    case unscheduled = "UNSCHEDULED"
  • Fixed amount, fixed frequency, no defined duration. (E.g., Streaming service).

    Declaration

    Swift

    case subscription = "SUBSCRIPTION"