PaymentButtonSize

@objc(PPCPaymentButtonSize)
enum PaymentButtonSize
extension PaymentButtonSize : CaseIterable, CustomStringConvertible, Equatable, Hashable, RawRepresentable

The size category which determines how the button is shown.

  • Collapsed will only show the wordmark.

    Declaration

    Swift

    case collapsed
  • A textual representation of this instance.

    Calling this property directly is discouraged. Instead, convert an instance of any type to a string by using the String(describing:) initializer. This initializer works with any type, and uses the custom description property for types that conform to CustomStringConvertible:

    struct Point: CustomStringConvertible {
        let x: Int, y: Int
    
        var description: String {
            return "(\(x), \(y))"
        }
    }
    
    let p = Point(x: 21, y: 30)
    let s = String(describing: p)
    print(s)
    // Prints "(21, 30)"
    

    The conversion of p to a string in the assignment to s uses the Point type’s description property.

    Declaration

    Swift

    var description: String { get }
  • Expanded shows the wordmark along with the suffix.

    Declaration

    Swift

    case expanded
  • Full will show the wordmark along with the prefix and suffix.

    Declaration

    Swift

    case full
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified raw value, this initializer returns nil. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    print(PaperSize(rawValue: "Legal"))
    // Prints "Optional("PaperSize.Legal")"
    
    print(PaperSize(rawValue: "Tabloid"))
    // Prints "nil"
    

    Declaration

    Swift

    init?(rawValue: Int)
  • Circle shaped button similar to a floating action button will show the monogram, if .venmo then will show Venmo logo.

    Declaration

    Swift

    case mini