CatalogGroup
public struct CatalogGroup : Decodable
Group of CatalogItem
s
-
Determines if this is a featured group, featured groups are recommended to be highlighted to the user
Declaration
Swift
public let isFeatured: Bool
-
Title
Declaration
Swift
public let title: String
-
Secondary title
Declaration
Swift
public let subTitle: String?
-
The type of item in the current group
Declaration
Swift
public let itemType: CatalogItemType
-
The
CatalogItem
s in this groupDeclaration
Swift
public let items: [CatalogItem]
-
Declaration
Swift
public init(from decoder: Decoder) throws