RemoteConfigParameterGroup interface
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.
Signature:
export interface RemoteConfigParameterGroup
Properties
Property |
Type |
Description |
description |
string |
A description for the group. Its length must be less than or equal to 256 characters. A description may contain any Unicode characters. |
parameters |
{ [key: string]: RemoteConfigParameter; } |
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.
Signature:
parameters: {
[key: string]: RemoteConfigParameter;
};
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-07-29 UTC.
[null,null,["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 };"]]