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

com.payu.sdk.api.model.OrderState Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy