All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.konduto.sdk.models.KondutoOrderStatus Maven / Gradle / Ivy

Go to download

Easily integrate with Konduto (https://konduto.com), a fraud prevention service.

There is a newer version: 2.17.4
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy