public enum DisputeRelevantEvidence extends java.lang.Enum<DisputeRelevantEvidence>
| Enum Constant and Description |
|---|
ADDITIONAL_EVIDENCE |
CUSTOMER_COMMUNICATION |
INVOICE_OR_RECEIPT |
INVOICE_SHOWING_DISTINCT_TRANSACTIONS |
PROOF_OF_DELIVERY_OR_SERVICE |
RECURRING_TRANSACTION_AGREEMENT |
REFUND_OR_CANCELLATION_POLICY |
| Modifier and Type | Method and Description |
|---|---|
static DisputeRelevantEvidence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisputeRelevantEvidence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="proof_of_delivery_or_service") public static final DisputeRelevantEvidence PROOF_OF_DELIVERY_OR_SERVICE
@SerializedName(value="invoice_or_receipt") public static final DisputeRelevantEvidence INVOICE_OR_RECEIPT
@SerializedName(value="invoice_showing_distinct_transactions") public static final DisputeRelevantEvidence INVOICE_SHOWING_DISTINCT_TRANSACTIONS
@SerializedName(value="customer_communication") public static final DisputeRelevantEvidence CUSTOMER_COMMUNICATION
@SerializedName(value="refund_or_cancellation_policy") public static final DisputeRelevantEvidence REFUND_OR_CANCELLATION_POLICY
@SerializedName(value="recurring_transaction_agreement") public static final DisputeRelevantEvidence RECURRING_TRANSACTION_AGREEMENT
@SerializedName(value="additional_evidence") public static final DisputeRelevantEvidence ADDITIONAL_EVIDENCE
public static DisputeRelevantEvidence[] values()
for (DisputeRelevantEvidence c : DisputeRelevantEvidence.values()) System.out.println(c);
public static DisputeRelevantEvidence valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null