FeedbackReturn
public struct FeedbackReturn : Codable, Equatable
Information about the document and the submitted feedback.
-
The unique ID of the feedback object.
Declaration
Swift
public var feedbackID: String? -
An optional string identifying the person submitting feedback.
Declaration
Swift
public var userID: String? -
An optional comment from the person submitting the feedback.
Declaration
Swift
public var comment: String? -
Timestamp listing the creation time of the feedback submission.
Declaration
Swift
public var created: Date? -
Information returned from the Add Feedback method.
Declaration
Swift
public var feedbackData: FeedbackDataOutput?
View on GitHub
FeedbackReturn Structure Reference