PCFNavigationItem
public struct PCFNavigationItem: NavigationItem, Decodable
Navigation item model. Usually contains a deeplink.
-
Collection of Image. Can be empty (if
text
exists).Declaration
Swift
public let images: [ImageType]
-
Extra text that may accompany the images in the navigation. Can be null (if
images
exists).Declaration
Swift
public let text: String?
-
Internal navugation URL. Supports linking directly to internal company interfaces. See main descriptions for more details
Declaration
Swift
public let navigation: String
-
Internal navugation URL. Supports linking directly to internal company interfaces. See main descriptions for more details
Declaration
Swift
public init?(json: JSON)
Parameters
json
JSON representation of object.
Return Value
New instance when JSON parsing successful, false otherwise.