CardImage
public struct CardImage : Equatable, Codable
Representing the detail/cover image of a carda
-
used when loading a card specific to a scene from SAP Mobile Services
Declaration
Swift
public var id: String?
-
data object that contains the specified image
Declaration
Swift
public var data: Data? { get set }
-
instantiates a new
CardImage
without id and withou dataDeclaration
Swift
public static var new: CardImage { get }
-
Initializer for read-only use
Declaration
Swift
public init(data: Data? = nil)