BoolEncoding

public enum BoolEncoding

Configures how Bool parameters are encoded.

  • numeric: Encode true as 1 and false as 0. This is the default behavior.
  • literal: Encode true and false as string literals.
  • Declaration

    Swift

    case numeric
  • Declaration

    Swift

    case literal