com.global.api.entities.IRecurringEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.entities;
import com.global.api.entities.exceptions.ApiException;
public interface IRecurringEntity {
String getId();
void setId(String value);
String getKey();
void setKey(String value);
T create(String configName) throws ApiException;
void delete() throws ApiException;
void delete(boolean force) throws ApiException;
T saveChanges() throws ApiException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy