DatalinkCreateResponse

public struct DatalinkCreateResponse : Codable
  • A system assigned unique identification for the Datalink.

    • This value is also a part of the URL.

    Declaration

    Swift

    public let uniqueID: String?
  • url

    Unique Datalink URL that you will need to redirect PSU in order the account access consent to proceed.

    Declaration

    Swift

    public let url: String?
  • Base64 encoded QRCode image data that represents Datalink URL.

    Declaration

    Swift

    public let qrCode: String?
  • Declaration

    Swift

    public init(uniqueID: String?,
                url: String?,
                qrCode: String?)