Stay organized with collections
Save and categorize content based on your preferences.
Interface representing a Remote Config parameter group. Grouping parameters is only for management purposes and does not affect client-side fetching of parameter values.
Map of parameter keys to their optional default values and optional conditional values for parameters that belong to this group. A parameter only appears once per Remote Config template. An ungrouped parameter appears at the top level, whereas a parameter organized within a group appears within its group's map of parameters.
RemoteConfigParameterGroup.description
A description for the group. Its length must be less than or equal to 256 characters. A description may contain any Unicode characters.
Signature:
description?:string;
RemoteConfigParameterGroup.parameters
Map of parameter keys to their optional default values and optional conditional values for parameters that belong to this group. A parameter only appears once per Remote Config template. An ungrouped parameter appears at the top level, whereas a parameter organized within a group appears within its group's map of parameters.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-07-29 UTC."],[],[],null,["# RemoteConfigParameterGroup interface\n\nInterface representing a Remote Config parameter group. Grouping parameters is only for management purposes and does not affect client-side fetching of parameter values.\n\n**Signature:** \n\n export interface RemoteConfigParameterGroup \n\nProperties\n----------\n\n| Property | Type | Description |\n|-------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [description](./firebase-admin.remote-config.remoteconfigparametergroup.md#remoteconfigparametergroupdescription) | string | A description for the group. Its length must be less than or equal to 256 characters. A description may contain any Unicode characters. |\n| [parameters](./firebase-admin.remote-config.remoteconfigparametergroup.md#remoteconfigparametergroupparameters) | { \\[key: string\\]: [RemoteConfigParameter](./firebase-admin.remote-config.remoteconfigparameter.md#remoteconfigparameter_interface); } | Map of parameter keys to their optional default values and optional conditional values for parameters that belong to this group. A parameter only appears once per Remote Config template. An ungrouped parameter appears at the top level, whereas a parameter organized within a group appears within its group's map of parameters. |\n\nRemoteConfigParameterGroup.description\n--------------------------------------\n\nA description for the group. Its length must be less than or equal to 256 characters. A description may contain any Unicode characters.\n\n**Signature:** \n\n description?: string;\n\nRemoteConfigParameterGroup.parameters\n-------------------------------------\n\nMap of parameter keys to their optional default values and optional conditional values for parameters that belong to this group. A parameter only appears once per Remote Config template. An ungrouped parameter appears at the top level, whereas a parameter organized within a group appears within its group's map of parameters.\n\n**Signature:** \n\n parameters: {\n [key: string]: RemoteConfigParameter;\n };"]]