TermsOfServiceStatus

public enum TermsOfServiceStatus : BoxEnum

Specifies whether the Terms of Service is currently active or inactive.

  • The ToS is currently enabled and active.

    Declaration

    Swift

    case enabled
  • The ToS is currently disabled and inactive.

    Declaration

    Swift

    case disabled
  • Custom value for enum values not yet implemented in the SDK

    Declaration

    Swift

    case customValue(String)
  • Initializer.

    Declaration

    Swift

    public init(_ value: String)

    Parameters

    value

    String representation of active/inactive indicator flag for ToS.

  • String representation of active/inactive indicator for ToS.

    Declaration

    Swift

    public var description: String { get }