ParsedData

data class ParsedData(val source: Int, val destinations: Int, val buId: String?)

Helper method to parse a Base64 encoded string into its component parts Expected format: source:destination:buId

Return

A data class containing (pushSource, destinations, buId)

Parameters

base64EncodedData

The Base64 encoded string to parse

Constructors

Link copied to clipboard
constructor(source: Int, destinations: Int, buId: String?)

Properties

Link copied to clipboard
val buId: String?
Link copied to clipboard
val destinations: Int
Link copied to clipboard
val source: Int