Reason

public enum Reason : String, CaseIterable

Built-in set of reasons for feedback

  • The name of attached suggestion/result is wrong.

    Declaration

    Swift

    case name = "incorrect_name"
  • The address of attached suggestion/result is wrong.

    Declaration

    Swift

    case address = "incorrect_address"
  • The coordinates of attached result is wrong.

    Declaration

    Swift

    case location = "incorrect_location"
  • Response doesn’t include result that exists in real.

    Declaration

    Swift

    case missingResult = "cannot_find"
  • Any other feedback reason.

    Declaration

    Swift

    case other = "other_result_issue"