Package-level declarations

Types

Link copied to clipboard
@Serializable
data class ManagingEntityConfig(val nameFhirPathExpression: String? = null, val eligibilityCriteriaFhirPathExpression: String? = "", val resourceType: ResourceType? = null, val dialogTitle: String? = null, val dialogWarningMessage: String? = null, val dialogContentMessage: String? = null, val noMembersErrorMessage: String = "", val managingEntityReassignedMessage: String = "", var relationshipCode: Code? = null) : Parcelable, Serializable
Link copied to clipboard
@Serializable
data class ProfileConfiguration(var appId: String, var configType: String = ConfigType.Profile.name, val id: String, val fhirResource: FhirResourceConfig, val secondaryResources: List<FhirResourceConfig>? = null, val profileParams: List<String> = emptyList(), val rules: List<RuleConfig> = emptyList(), val topAppBar: TopBarConfig? = null, val views: List<ViewProperties> = emptyList(), val fabActions: List<NavigationMenuConfig> = emptyList(), val overFlowMenuItems: List<OverflowMenuItemConfig> = emptyList(), val filterActiveResources: List<ActiveResourceFilterConfig> = listOf( ActiveResourceFilterConfig(resourceType = ResourceType.Patient, active = true), ActiveResourceFilterConfig(resourceType = ResourceType.Group, active = true), ), val configRules: List<RuleConfig>? = null, val contentBackgroundColor: String? = "#F2F4F7") : Configuration