CardImage

public struct CardImage : Equatable, Codable

Representing the detail/cover image of a carda

  • id

    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 }
  • new

    instantiates a new CardImage without id and withou data

    Declaration

    Swift

    public static var new: CardImage { get }
  • Initializer for read-only use

    Declaration

    Swift

    public init(data: Data? = nil)