GetFeedback

public struct GetFeedback : Codable, Equatable

The results of a successful Get Feedback request for a single feedback entry.

  • A string uniquely identifying the feedback entry.

    Declaration

    Swift

    public var feedbackID: String?
  • A timestamp identifying the creation time of the feedback entry.

    Declaration

    Swift

    public var created: Date?
  • A string containing the user’s comment about the feedback entry.

    Declaration

    Swift

    public var comment: String?
  • Information returned from the Add Feedback method.

    Declaration

    Swift

    public var feedbackData: FeedbackDataOutput?