ProfileImage
struct ProfileImage : Codable, Hashable, Equatable
Represents the profile image of a consumer PSP.
-
The content of the profile image in Base64 encoding.
Declaration
Swift
public let contentBase64: String
-
The type of the profile image.
Declaration
Swift
public let type: String
-
Initializes a new
ProfileImage
instance.Declaration
Swift
public init(contentBase64: String, type: String)
Parameters
contentBase64
The content of the profile image in Base64 encoding.
type
The type of the profile image.