PaymentButtonEdges

@objc(PPCPaymentButtonEdges)
enum PaymentButtonEdges
extension PaymentButtonEdges : CaseIterable, CustomStringConvertible, Equatable, Hashable, RawRepresentable

Edges for the Smart Payment Button, these affect the corner radius.

  • 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 }
  • Hard edges on button with 0 corner radius.

    Declaration

    Swift

    case hardEdges
  • 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)
  • Pill shaped corner radius.

    Declaration

    Swift

    case rounded
  • Soft edges with a corner radius of 4 pts.

    Declaration

    Swift

    case softEdges