com.yandex.money.api.net.MethodResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ym-java-epr-sdk Show documentation
Show all versions of ym-java-epr-sdk Show documentation
This Java library contains classes that allows you to do payments using Yandex.Money public API.
The newest version!
package com.yandex.money.api.net;
/**
* API responses implement this interface.
*
* @author Slava Yasevich ([email protected])
*/
public interface MethodResponse {
static final String CODE_SUCCESS = "success";
static final String CODE_REFUSED = "refused";
static final String CODE_HOLD_FOR_PICKUP = "hold_for_pickup";
static final String CODE_IN_PROGRESS = "in_progress";
static final String CODE_EXT_AUTH_REQUIRED = "ext_auth_required";
static final String CODE_UNKNOWN = "unknown";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy