datai/docs/reference-code/com/sforce/soap/tooling/GuidedConfigKey.java

132 lines
1.9 KiB
Java
Raw Permalink Normal View History

2026-01-22 10:52:30 +08:00
package com.sforce.soap.tooling;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
/**
* This is a generated class for the SObject Enterprise API.
* Do not edit this file, as your changes will be lost.
*/
public enum GuidedConfigKey {
/**
* Enumeration : aiDisclosure
*/
aiDisclosure("aiDisclosure"),
/**
* Enumeration : optOutMessage
*/
optOutMessage("optOutMessage"),
/**
* Enumeration : valueProposition
*/
valueProposition("valueProposition"),
/**
* Enumeration : companyDescription
*/
companyDescription("companyDescription"),
/**
* Enumeration : meetingOwner
*/
meetingOwner("meetingOwner"),
/**
* Enumeration : proofPoints
*/
proofPoints("proofPoints"),
/**
* Enumeration : language
*/
language("language"),
/**
* Enumeration : type
*/
type("type"),
/**
* Enumeration : userId
*/
userId("userId"),
/**
* Enumeration : label
*/
label("label"),
/**
* Enumeration : tone
*/
tone("tone"),
/**
* Enumeration : companyName
*/
companyName("companyName"),
/**
* Enumeration : prospectCreationMetadata
*/
prospectCreationMetadata("prospectCreationMetadata"),
/**
* Enumeration : prospectCreationFlowId
*/
prospectCreationFlowId("prospectCreationFlowId"),
/**
* Enumeration : shouldVerifyUser
*/
shouldVerifyUser("shouldVerifyUser"),
/**
* Enumeration : alternateMeetingOwner
*/
alternateMeetingOwner("alternateMeetingOwner"),
;
public static Map<String, String> valuesToEnums;
static {
valuesToEnums = new HashMap<String, String>();
for (GuidedConfigKey e : EnumSet.allOf(GuidedConfigKey.class)) {
valuesToEnums.put(e.toString(), e.name());
}
}
private String value;
private GuidedConfigKey(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}