mx.openpay.client.utils.OpenpayPathComponents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpay-api-client Show documentation
Show all versions of openpay-api-client Show documentation
Java client for Openpay Services
/*
* Copyright 2013 Opencard Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package mx.openpay.client.utils;
/**
* @author elopez
*/
public class OpenpayPathComponents {
public static final String VERSION = "v1";
public static final String MERCHANT_ID = "/%s";
public static final String CUSTOMERS = "/customers";
public static final String BANK_ACCOUNTS = "/bankaccounts";
public static final String CARDS = "/cards";
public static final String CHARGES = "/charges";
public static final String PAYOUTS = "/payouts";
public static final String TRANSFERS = "/transfers";
public static final String FEES = "/fees";
public static final String REFUND = "/refund";
public static final String CAPTURE = "/capture";
public static final String CONFIRM = "/confirm";
public static final String ID = "/%s";
public static final String PLANS = "/plans";
public static final String PAYMETNS_PLANS = "/payments-plans";
public static final String SUBSCRIPTIONS = "/subscriptions";
public static final String REPORTS = "/reports";
public static final String REPORT_DETAILS = "/detail";
public static final String OPENPAY_FEES = "/fees";
public static final String PAYOUT = "/payout";
public static final String POINTS = "/points";
public static final String ORDERS = "/orders";
public static final String WEBHOOKS = "/webhooks";
public static final String WEBHOOK_ID = "/%s";
public static final String WEBHOOKS_VERIFY = "/verify";
public static final String WEBHOOK_CODE = "/%s";
public static final String BINES = "/bines";
public static final String BIN = "/%s";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy