132 lines
1.9 KiB
Java
132 lines
1.9 KiB
Java
|
|
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;
|
||
|
|
}
|
||
|
|
}
|