FeedbackItem
public struct FeedbackItem : Equatable
                Struct representing Feedback Item related values.
- 
                  
                  
Feedback item type enumeration.
See moreDeclaration
Swift
public enum FeedbackType : Int, Equatable - 
                  
                  
Value representing the entity id.
Declaration
Swift
public var id: Int - 
                  
                  
The label of feedback item.
Declaration
Swift
public var labelText: String - 
                  
                  
The description of feedback item.
Declaration
Swift
public var descriptionText: String - 
                  
                  
The type of feedback item.
Declaration
Swift
public var type: FeedbackItem.FeedbackType? - 
                  
                  
The parameter name of feedback item.
Declaration
Swift
public var paramName: String - 
                  
                  
The value of feedback item.
Declaration
Swift
public var value: String - 
                  
                  
Undocumented
Declaration
Swift
public init(id: Int, labelText: String, descriptionText: String, type: FeedbackItem.FeedbackType?, paramName: String, value: String) 
View on GitHub
        FeedbackItem Structure Reference