public enum ActionSource extends Enum<ActionSource>
| Enum Constant and Description |
|---|
app
Conversion was made using your app.
|
chat
Conversion was made via a messaging app, SMS, or online messaging feature.
|
email
Conversion happened over email.
|
other
Conversion happened in a way that is not listed.
|
phone_call
Conversion was made over the phone.
|
physical_store
Conversion was made in person at your physical store.
|
system_generated
Conversion happened automatically, for example, a subscription renewal that’s set on auto-pay each month.
|
website
Conversion was made on your website.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionSource email
public static final ActionSource website
public static final ActionSource app
public static final ActionSource phone_call
public static final ActionSource chat
public static final ActionSource physical_store
public static final ActionSource system_generated
public static final ActionSource other
public static ActionSource[] values()
for (ActionSource c : ActionSource.values()) System.out.println(c);
public static ActionSource valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.