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

com.logicommerce.sdk.definition.ExpressCheckoutDefinition Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.logicommerce.sdk.definition;

import com.logicommerce.sdk.enums.ConnectorType;

/**
 * This interface represents the definition for an express checkout connector.
 * It extends the ConnectorDefinition interface.
 * 
 * @see ConnectorDefinition
 * @author LogiCommerce
 * @since 1.3.5
 */
public interface ExpressCheckoutDefinition extends ConnectorDefinition {

	/**
	 * Returns the type of the connector, which is ConnectorType.EXPRESS_CHECKOUT.
	 * 
	 * @return The type of the connector.
	 */
	@Override
	default ConnectorType getType() {
		return ConnectorType.EXPRESS_CHECKOUT;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy