CategoryGroup
public struct CategoryGroup : Codable, Equatable, Sendable
Category group model
-
Category group id in UUID format
Declaration
Swift
public let id: String -
Category group name
Declaration
Swift
public let name: String -
Whether or not the category group is hidden
Declaration
Swift
public let hidden: Bool -
Whether or not the category group has been deleted. Deleted category groups will only be included in delta requests.
Declaration
Swift
public let deleted: Bool -
Undocumented
Declaration
Swift
public init( id: String, name: String, hidden: Bool, deleted: Bool )
View on GitHub