Category
public struct Category : Codable, Equatable
Information defining an element’s subject matter.
-
The category of the associated element.
See moreDeclaration
Swift
public enum Label : String
-
The type of modification of the feedback entry in the updated labels response.
See moreDeclaration
Swift
public enum Modification : String
-
The category of the associated element.
Declaration
Swift
public var label: String?
-
Hashed values that you can send to IBM to provide feedback or receive support.
Declaration
Swift
public var provenanceIDs: [String]?
-
The type of modification of the feedback entry in the updated labels response.
Declaration
Swift
public var modification: String?
-
Initialize a
Category
with member variables.Declaration
Swift
public init( label: String? = nil, provenanceIDs: [String]? = nil, modification: String? = nil )
Parameters
label
The category of the associated element.
provenanceIDs
Hashed values that you can send to IBM to provide feedback or receive support.
modification
The type of modification of the feedback entry in the updated labels response.
Return Value
An initialized
Category
.