afv-library/skills/platform-metadata-api-context-get/assets/metadata_api/FeatureParameterBoolean.json

47 lines
2.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"sections": [
"title",
"description",
"file_information",
"directory_location",
"fields",
"sub_types",
"declarative_metadata_sample_definition"
],
"title": "FeatureParameterBoolean - Metadata API",
"description": "Represents a boolean feature parameter in the Feature Management App (FMA). Feature parameters let you drive app behavior and track activation metrics in subscriber orgs that install your package. This type extends the Metadata metadata type and inherits its fullName field.",
"file_information": ".featureParameterBoolean",
"directory_location": "featureParameters",
"fields_columns": [
"type",
"description"
],
"fields": {
"dataFlowDirection": {
"type": "FeatureParameterDataFlowDirection",
"description": "After a package containing the components is installed, indicates whether the feature parameters value is editable in your License Management Org (LMO) and read-only in your customers org or the other way around."
},
"masterLabel": {
"type": "string",
"description": "The feature parameter name that appears in the user interface."
},
"value": {
"type": "boolean",
"description": "The default value for this feature parameter. You can reference this value in your code, just like you reference other values in a subscribers org."
}
},
"sub_types": {
"FeatureParameterDataFlowDirection": {
"FeatureParameterDataFlowDirection": {
"type": "string",
"description": "After a package containing the components is installed, indicates whether the feature parameters value is editable in your License Management Org (LMO) and read-only in your customers org or the other way around. LmoToSubscriber SubscriberToLmo"
}
}
},
"declarative_metadata_sample_definition": [
{
"description": "The following is an example of a FeatureParameterBoolean component.",
"code": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<FeatureParameterBoolean xmlns=\"http://soap.sforce.com/2006/04/metadata\">\n <dataflowDirection>SubscriberToLmo</dataflowDirection>\n <masterLabel>Budget Tracking Enabled</masterLabel>\n <value>false</value>\n</FeatureParameterBoolean>"
}
]
}