afv-library/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlowConfig.json

44 lines
2.9 KiB
JSON
Raw Normal View History

{
"sections": [
"title",
"description",
"supported_soap_calls",
"supported_rest_api_http_methods",
"fields",
"special_access_rules",
"wsdl_segment"
],
"title": "EmbeddedServiceFlowConfig - Tooling API",
"description": "Represents whether an Embedded Service Flow feature is enabled or not. This object is available in API version 45.0 and later.",
"supported_soap_calls": "`create()`, `delete()`, `describeLayout()`, `describeSObjects()`, `query()`, `retrieve()`, `update()`, `upsert()`",
"supported_rest_api_http_methods": "`DELETE`, `GET`, `HEAD`, `PATCH`, `POST`, `Query`",
"fields_columns": [
"type",
"properties",
"description"
],
"fields": {
"EmbeddedServiceConfigId": {
"type": "reference",
"properties": "Filter, Group, Sort",
"description": "The unique ID of an EmbeddedServiceConfig (the Embedded Service deployment) that the flow config is associated with."
},
"Enabled": {
"type": "boolean",
"properties": "Defaulted on create, Filter, Group, Sort",
"description": "Specifies whether the embedded flow is enabled (true) or not (false). Defaults to false."
},
"FullName": {
"type": "string",
"properties": "Create, Group, Nillable",
"description": "The full name of the parent object EmbeddedServiceConfig in Metadata API. The full name can include a namespaceprefix. Query this field only if the query result contains no more than one record. Otherwise, an error is returned. If more than one record exists, use multiple queries to retrieve the records. This limit protects performance."
},
"Metadata": {
"type": "EmbeddedServiceFlowConfig",
"properties": "Create, Nillable, Update",
"description": "The embedded service flow config's metadata. Query this field only if the query result contains no more than one record. Otherwise, an error is returned. If more than one record exists, use multiple queries to retrieve the records. This limit protects performance."
}
},
"special_access_rules": "To access this type, you need the Customize Application user permission.",
"wsdl_segment": "```xml\n<xsd:complexType name=\"EmbeddedServiceFlowConfig\">\n <xsd:complexContent>\n <xsd:extension base=\"ens:sObject\">\n <xsd:sequence>\n <xsd:element name=\"FullName\" minOccurs=\"0\" type=\"xsd:string\" nillable=\"true\"/>\n <xsd:element name=\"Metadata\" minOccurs=\"0\" type=\"mns:EmbeddedServiceFlowConfig\" nillable=\"true\"/>\n </xsd:sequence>\n </xsd:extension>\n </xsd:complexContent>\n</xsd:complexType>\n\n\n<xsd:complexType name=\"EmbeddedServiceFlowConfig\">\n <xsd:complexContent>\n <xsd:extension base=\"mns:Metadata\">\n <xsd:sequence>\n <xsd:element name=\"enabled\" type=\"xsd:boolean\"/>\n </xsd:sequence>\n </xsd:extension>\n </xsd:complexContent>\n</xsd:complexType>\n```"
}