You can use the property option to apply different parameters according to your business logic.
To learn how to create and edit properties, please read this article.
property- string (optional)
The default property can't be deleted in the portal, it will be applied in the following cases:
- you don't specify any property
- the property set in dnaConfig doesn't match any property in the portal
- the property set is "default"
It is then required to call the Property in the builder.
do {
dnaClient = try DNAClient.builder()
.dnaClientDelegate(self)
.latency(30)
.streamrootKey(<#yourStreamrootKey#>)
.property(<#yourPropertyName#>)
.start(manifestUrl)
} catch let error {
print("\(error)")
}