ActiveFitUrls

class ActiveFitUrls(var urls: List<NamedUrl> = emptyList())

A keyed collection of NamedUrl entries used within the Active Fit application.

This is a convenience container for grouping multiple key/URL pairs — links to terms of service, privacy policies, or other backend-driven external resources — behind a single object so they can be passed around or retained together.

Note the distinction from the closely related types: the configuration returned by com.advantahealth.api.settings.ApplicationSettings.getActiveFitSettings exposes its links as a plain List<ActiveFitUrl> on com.advantahealth.api.settings.model.ActiveFitConfig, not as this wrapper. ActiveFitUrl and NamedUrl are structurally identical single-link types; this class wraps a list of the latter.

Constructors

Link copied to clipboard
constructor(urls: List<NamedUrl> = emptyList())

Properties

Link copied to clipboard

The contained key/URL pairs; empty by default.

Functions

Link copied to clipboard
open override fun toString(): String