CustomParam

public struct CustomParam : Equatable

Type for custom parameters

  • Undocumented

    Declaration

    Swift

    public let name: String
  • Undocumented

    Declaration

    Swift

    public let value: String
  • Initializes a new CustomParam.

    Declaration

    Swift

    public init(name: String, value: String)

    Parameters

    name

    Name of the parameter

    value

    Value of the parameter (max len 128 bytes)

  • Declaration

    Swift

    public static func == (lhs: CustomParam, rhs: CustomParam) -> Bool