com.payu.sdk.api.model.OrderState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.model;
public enum OrderState {
/**
* Status for an order recently created.
*/
NEW,
/**
* Status for an order being processed.
*/
IN_PROGRESS,
/**
* Status for an authorized order.
*/
AUTHORIZED,
/**
* Status for a captured order.
*/
CAPTURED,
/**
* Status for an order that was cancelled.
*/
CANCELLED,
/**
* Status for an order that was declined.
*/
DECLINED,
/**
* Status for a refunded order.
*/
REFUNDED
}