ZSCustomFieldFilter

public struct ZSCustomFieldFilter

A filter used to apply matching conditions to a custom field.

  • Represents the type of match to apply for the custom field filter.

    See more

    Declaration

    Swift

    public enum MatchType : String
  • The API field name (identifier) of the custom field.

    Declaration

    Swift

    public let fieldAPIName: String
  • The value to filter for in the custom field.

    Declaration

    Swift

    public let filterValue: String
  • The match type used to evaluate the filter.

    Declaration

    Swift

    public let matchType: MatchType
  • Undocumented

    Declaration

    Swift

    public init(fieldAPIName: String, filterValue: String, matchType: MatchType)
  • Creates with default match type as contains

    Declaration

    Swift

    public init(fieldAPIName: String, filterValue: String)