Package com.stripe.param
Enum FileListParams.Purpose
- java.lang.Object
-
- java.lang.Enum<FileListParams.Purpose>
-
- com.stripe.param.FileListParams.Purpose
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<FileListParams.Purpose>
- Enclosing class:
- FileListParams
public static enum FileListParams.Purpose extends java.lang.Enum<FileListParams.Purpose> implements ApiRequestParams.EnumParam
Maximum value to filter by (inclusive).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDITIONAL_VERIFICATION
BUSINESS_ICON
BUSINESS_LOGO
CUSTOMER_SIGNATURE
DISPUTE_EVIDENCE
FINANCE_REPORT_RUN
IDENTITY_DOCUMENT
PCI_DOCUMENT
SIGMA_SCHEDULED_QUERY
TAX_DOCUMENT_USER_UPLOAD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static FileListParams.Purpose
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FileListParams.Purpose[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDITIONAL_VERIFICATION
@SerializedName("additional_verification") public static final FileListParams.Purpose ADDITIONAL_VERIFICATION
-
BUSINESS_ICON
@SerializedName("business_icon") public static final FileListParams.Purpose BUSINESS_ICON
-
BUSINESS_LOGO
@SerializedName("business_logo") public static final FileListParams.Purpose BUSINESS_LOGO
-
CUSTOMER_SIGNATURE
@SerializedName("customer_signature") public static final FileListParams.Purpose CUSTOMER_SIGNATURE
-
DISPUTE_EVIDENCE
@SerializedName("dispute_evidence") public static final FileListParams.Purpose DISPUTE_EVIDENCE
-
FINANCE_REPORT_RUN
@SerializedName("finance_report_run") public static final FileListParams.Purpose FINANCE_REPORT_RUN
-
IDENTITY_DOCUMENT
@SerializedName("identity_document") public static final FileListParams.Purpose IDENTITY_DOCUMENT
-
PCI_DOCUMENT
@SerializedName("pci_document") public static final FileListParams.Purpose PCI_DOCUMENT
-
SIGMA_SCHEDULED_QUERY
@SerializedName("sigma_scheduled_query") public static final FileListParams.Purpose SIGMA_SCHEDULED_QUERY
-
TAX_DOCUMENT_USER_UPLOAD
@SerializedName("tax_document_user_upload") public static final FileListParams.Purpose TAX_DOCUMENT_USER_UPLOAD
-
-
Method Detail
-
values
public static FileListParams.Purpose[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FileListParams.Purpose c : FileListParams.Purpose.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileListParams.Purpose valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
- Specified by:
getValue
in interfaceApiRequestParams.EnumParam
-
-