com.konduto.sdk.models.KondutoOrderStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Easily integrate with Konduto (https://konduto.com), a fraud prevention service.
package com.konduto.sdk.models;
import com.google.gson.annotations.SerializedName;
/**
*
* Order status enum.
*
* @see Konduto API Spec
*/
public enum KondutoOrderStatus {
@SerializedName("pending")
PENDING,
@SerializedName("approved")
APPROVED,
@SerializedName("declined")
DECLINED,
@SerializedName("fraud")
FRAUD,
@SerializedName("not_authorized")
NOT_AUTHORIZED,
@SerializedName("not_analyzed")
NOT_ANALYZED,
@SerializedName("canceled")
CANCELED
}